diff --git a/README.md b/README.md
index 3f99507..d17f7b1 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,6 @@ Required:
* [empy](http://www.alcyone.com/pyos/empy/) - Python templating library
* [catkin_pkg](http://pypi.python.org/pypi/catkin_pkg/) - Runtime Python library for catkin
-Optional (for tests):
-* [Boost](http://www.boost.org/) - Boost C++ librairies
-
Optional (for documentation):
* [Doxygen](http://www.doxygen.org/) - Documentation generation tool
* [graphviz](http://www.graphviz.org/) - Graph visualization software
diff --git a/package.xml b/package.xml
index 27781e1..959f9b8 100644
--- a/package.xml
+++ b/package.xml
@@ -21,6 +21,4 @@
catkin
- boost
-
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index e52a4d3..ac9a421 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,6 +1,6 @@
if(UNIX)
catkin_add_gtest(${PROJECT_NAME}-test unix_serial_tests.cc)
- target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME} ${Boost_LIBRARIES})
+ target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
if(NOT APPLE)
target_link_libraries(${PROJECT_NAME}-test util)
endif()
diff --git a/tests/unix_serial_tests.cc b/tests/unix_serial_tests.cc
index 26ffde2..c34868a 100644
--- a/tests/unix_serial_tests.cc
+++ b/tests/unix_serial_tests.cc
@@ -20,8 +20,6 @@ void loop()
#include
#include "gtest/gtest.h"
-#include
-
// Use FRIEND_TEST... its not as nasty, thats what friends are for
// // OMG this is so nasty...
// #define private public