diff --git a/meta/libraries.json b/meta/libraries.json new file mode 100644 index 0000000..90d1218 --- /dev/null +++ b/meta/libraries.json @@ -0,0 +1,11 @@ +{ + "key": "system", + "name": "System", + "authors": [ + "Beman Dawes" + ], + "description": "Operating system support, including the diagnostics support that will be part of the C++0x standard library.", + "category": [ + "System" + ] +} diff --git a/test/config_test.cpp b/test/config_test.cpp index da637c3..eef8ab4 100644 --- a/test/config_test.cpp +++ b/test/config_test.cpp @@ -41,7 +41,8 @@ int main() std::cout << "BOOST_POSIX_API is not defined" << std::endl; #endif #ifdef BOOST_PLAT_WINDOWS_DESKTOP - std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is defined" << std::endl; + std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is defined as " + << BOOST_PLAT_WINDOWS_DESKTOP << std::endl; #else std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is not defined" << std::endl; #endif