$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r78290 - trunk/libs/filesystem/test
From: bdawes_at_[hidden]
Date: 2012-05-01 07:32:40
Author: bemandawes
Date: 2012-05-01 07:32:39 EDT (Tue, 01 May 2012)
New Revision: 78290
URL: http://svn.boost.org/trac/boost/changeset/78290
Log:
Filesystem: Add macro_default_test.cpp forgotten in 78273 commit
Added:
   trunk/libs/filesystem/test/macro_default_test.cpp   (contents, props changed)
Added: trunk/libs/filesystem/test/macro_default_test.cpp
==============================================================================
--- (empty file)
+++ trunk/libs/filesystem/test/macro_default_test.cpp	2012-05-01 07:32:39 EDT (Tue, 01 May 2012)
@@ -0,0 +1,36 @@
+//  macro_default_test program  --------------------------------------------------------//
+
+//  Copyright Beman Dawes 2012
+
+//  Distributed under the Boost Software License, Version 1.0.
+//  See http://www.boost.org/LICENSE_1_0.txt
+
+//  Library home page: http://www.boost.org/libs/filesystem
+
+#undef BOOST_ALL_DYN_LINK
+#undef BOOST_ALL_STATIC_LINK
+#undef BOOST_FILESYSTEM_DYN_LINK
+#undef BOOST_FILESYSTEM_STATIC_LINK
+#undef BOOST_SYSTEM_DYN_LINK
+#undef BOOST_SYSTEM_STATIC_LINK
+
+#ifndef BOOST_ALL_NO_LIB
+# define BOOST_ALL_NO_LIB
+#endif
+
+#include <boost/filesystem/config.hpp>
+#include <boost/system/config.hpp>
+
+#ifndef BOOST_FILESYSTEM_STATIC_LINK
+# error BOOST_FILESYSTEM_STATIC_LINK not set by default
+#endif
+
+
+#ifndef BOOST_SYSTEM_STATIC_LINK
+# error BOOST_SYSTEM_STATIC_LINK not set by default
+#endif
+
+int main()
+{
+  return 0;
+}