1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/signals/detail/config.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,54 @@
1.4 +/*
1.5 + *
1.6 + * Copyright (c) 1998-2002
1.7 + * John Maddock
1.8 + *
1.9 + * Copyright (c) 2003-2004
1.10 + * Douglas Gregor
1.11 + *
1.12 + * Distributed under the Boost Software License, Version 1.0. (See
1.13 + * accompanying file LICENSE_1_0.txt or copy at
1.14 + * http://www.boost.org/LICENSE_1_0.txt)
1.15 + *
1.16 + */
1.17 +
1.18 +#ifndef BOOST_SIGNALS_CONFIG_HPP
1.19 +#define BOOST_SIGNALS_CONFIG_HPP
1.20 +
1.21 +#include <boost/config.hpp>
1.22 +
1.23 +#ifdef BOOST_HAS_DECLSPEC
1.24 +# if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK)
1.25 +# ifdef BOOST_SIGNALS_SOURCE
1.26 +# define BOOST_SIGNALS_DECL __declspec(dllexport)
1.27 +# else
1.28 +# define BOOST_SIGNALS_DECL __declspec(dllimport)
1.29 +# endif // BOOST_SIGNALS_SOURCE
1.30 +# endif // DYN_LINK
1.31 +#endif // BOOST_HAS_DECLSPEC
1.32 +
1.33 +#ifndef BOOST_SIGNALS_DECL
1.34 +# define BOOST_SIGNALS_DECL
1.35 +#endif
1.36 +
1.37 +// Setup autolinking
1.38 +#if !defined(BOOST_SIGNALS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SIGNALS_NO_LIB)
1.39 +# define BOOST_LIB_NAME boost_signals
1.40 +
1.41 +# if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK)
1.42 +# define BOOST_DYN_LINK
1.43 +# endif
1.44 +
1.45 +# include <boost/config/auto_link.hpp>
1.46 +#endif // autolinking on
1.47 +
1.48 +#endif // BOOST_SIGNALS_CONFIG_HPP
1.49 +
1.50 +
1.51 +
1.52 +
1.53 +
1.54 +
1.55 +
1.56 +
1.57 +