1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/program_options/config.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,55 @@
1.4 +// Copyright (c) 2004 Hartmut Kaiser
1.5 +//
1.6 +// Use, modification and distribution is subject to the Boost Software
1.7 +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
1.8 +// http://www.boost.org/LICENSE_1_0.txt)
1.9 +
1.10 +#ifndef BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
1.11 +#define BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
1.12 +
1.13 +#include <boost/config.hpp>
1.14 +#include <boost/version.hpp>
1.15 +
1.16 +// Support for autolinking.
1.17 +#if BOOST_VERSION >= 103100 // works beginning from Boost V1.31.0
1.18 +
1.19 +///////////////////////////////////////////////////////////////////////////////
1.20 +// enable automatic library variant selection
1.21 +#if !defined(BOOST_PROGRAM_OPTIONS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && \
1.22 + !defined(BOOST_PROGRAM_OPTIONS_NO_LIB)
1.23 +
1.24 +// Set the name of our library, this will get undef'ed by auto_link.hpp
1.25 +// once it's done with it:
1.26 +#define BOOST_LIB_NAME boost_program_options
1.27 +// tell the auto-link code to select a dll when required:
1.28 +#if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK)
1.29 +# define BOOST_DYN_LINK
1.30 +#endif
1.31 +
1.32 +// And include the header that does the work:
1.33 +#include <boost/config/auto_link.hpp>
1.34 +
1.35 +#endif // auto-linking disabled
1.36 +
1.37 +#endif // BOOST_VERSION
1.38 +
1.39 +///////////////////////////////////////////////////////////////////////////////
1.40 +// Windows DLL suport
1.41 +#ifdef BOOST_HAS_DECLSPEC
1.42 +#if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK)
1.43 +// export if this is our own source, otherwise import:
1.44 +#ifdef BOOST_PROGRAM_OPTIONS_SOURCE
1.45 +# define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllexport)
1.46 +#else
1.47 +# define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllimport)
1.48 +#endif // BOOST_PROGRAM_OPTIONS_SOURCE
1.49 +#endif // DYN_LINK
1.50 +#endif // BOOST_HAS_DECLSPEC
1.51 +
1.52 +#ifndef BOOST_PROGRAM_OPTIONS_DECL
1.53 +#define BOOST_PROGRAM_OPTIONS_DECL
1.54 +#endif
1.55 +
1.56 +
1.57 +#endif // PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
1.58 +