Description: Use pkgconfig to find the system library for tbb
Author: Michael R. Crusoe <crusoe@ucdavis.edu>
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -180,6 +180,9 @@ set (Boost_USE_STATIC_LIBS OFF)
 set (Boost_USE_MULTITHREADED ON)
 #set (Boost_USE_STATIC_RUNTIME OFF)
 
+find_package (PkgConfig)
+pkg_check_modules(TBB REQUIRED tbb)
+
 find_package (ZLIB)
 if (NOT ZLIB_FOUND)
 	message (FATAL_ERROR "zlib must be installed before configuration & building can proceed")
@@ -398,7 +401,8 @@ set(SUFFARRAY_INCLUDE_DIRS ${CMAKE_CURRE
 #)
 #endif()
 
-find_package(TBB)
+#find_package(TBB)
+
 
 ##
 #
