diff options
author | Yegor Yefremov <yegor_sub1@visionsystems.de> | 2011-10-13 12:39:12 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-30 00:04:36 +0100 |
commit | f64a740f360439bbab6526b8a08588a57ea8fd52 (patch) | |
tree | 4265bd85305cbd8df3f215df852dccecec3fe1c0 /package/boost/Config.in | |
parent | 7ba2e23d8b3e8ac212bc045f63abb698fc61363f (diff) |
boost: New package added. Version 1.47
[Peter: Config.in tweaks]
Signed-off-by: Allan W. Nielsen <a@awn.dk>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/boost/Config.in')
-rw-r--r-- | package/boost/Config.in | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in new file mode 100644 index 000000000..7598d0268 --- /dev/null +++ b/package/boost/Config.in @@ -0,0 +1,79 @@ +config BR2_PACKAGE_BOOST + bool "boost" + depends on BR2_INSTALL_LIBSTDCPP + select BR2_PACKAGE_BZIP2 + select BR2_PACKAGE_ZLIB + help + A general purpose C++ library + + http://www.boost.org/ + +if BR2_PACKAGE_BOOST + +config BR2_PACKAGE_BOOST_MULTITHREADED + depends on BR2_TOOLCHAIN_HAS_THREADS + bool "boost-multithreaded" + help + Build the boost libraries as multithreaded + +config BR2_PACKAGE_BOOST_CHRONO + bool "boost-chrono" + +config BR2_PACKAGE_BOOST_DATE_TIME + bool "boost-date_time" + +config BR2_PACKAGE_BOOST_EXCEPTION + bool "boost-exception" + +config BR2_PACKAGE_BOOST_FILESYSTEM + bool "boost-filesystem" + +config BR2_PACKAGE_BOOST_GRAPH + bool "boost-graph" + +config BR2_PACKAGE_BOOST_GRAPH_PARALLEL + bool "boost-graph_parallel" + +config BR2_PACKAGE_BOOST_ICU + select BR2_PACKAGE_ICU + bool "boost-icu" + +config BR2_PACKAGE_BOOST_IOSTREAMS + bool "boost-iostreams" + +config BR2_PACKAGE_BOOST_MATH + bool "boost-math" + +config BR2_PACKAGE_BOOST_MPI + bool "boost-mpi" + +config BR2_PACKAGE_BOOST_PROGRAM_OPTIONS + bool "boost-program_options" + +config BR2_PACKAGE_BOOST_RANDOM + bool "boost-random" + +config BR2_PACKAGE_BOOST_REGEX + bool "boost-regex" + +config BR2_PACKAGE_BOOST_SERIALIZATION + bool "boost-serialization" + +config BR2_PACKAGE_BOOST_SIGNALS + bool "boost-signals" + +config BR2_PACKAGE_BOOST_SYSTEM + bool "boost-system" + +config BR2_PACKAGE_BOOST_TEST + bool "boost-test" + +config BR2_PACKAGE_BOOST_THREAD + depends on BR2_TOOLCHAIN_HAS_THREADS + bool "boost-thread" + +config BR2_PACKAGE_BOOST_WAVE + bool "boost-wave" + +endif + |