os/ossrv/ossrv_pub/boost_apis/boost/program_options/config.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
//    Copyright (c) 2004 Hartmut Kaiser
sl@0
     2
//
sl@0
     3
//    Use, modification and distribution is subject to the Boost Software
sl@0
     4
//    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     5
//    http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
#ifndef BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
sl@0
     8
#define BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
sl@0
     9
sl@0
    10
#include <boost/config.hpp>
sl@0
    11
#include <boost/version.hpp>
sl@0
    12
sl@0
    13
// Support for autolinking.
sl@0
    14
#if BOOST_VERSION >= 103100   // works beginning from Boost V1.31.0
sl@0
    15
sl@0
    16
///////////////////////////////////////////////////////////////////////////////
sl@0
    17
// enable automatic library variant selection 
sl@0
    18
#if !defined(BOOST_PROGRAM_OPTIONS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && \
sl@0
    19
    !defined(BOOST_PROGRAM_OPTIONS_NO_LIB)
sl@0
    20
sl@0
    21
// Set the name of our library, this will get undef'ed by auto_link.hpp
sl@0
    22
// once it's done with it:
sl@0
    23
#define BOOST_LIB_NAME boost_program_options
sl@0
    24
// tell the auto-link code to select a dll when required:
sl@0
    25
#if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK)
sl@0
    26
#  define BOOST_DYN_LINK
sl@0
    27
#endif
sl@0
    28
sl@0
    29
// And include the header that does the work:
sl@0
    30
#include <boost/config/auto_link.hpp>
sl@0
    31
sl@0
    32
#endif  // auto-linking disabled
sl@0
    33
sl@0
    34
#endif  // BOOST_VERSION
sl@0
    35
sl@0
    36
///////////////////////////////////////////////////////////////////////////////
sl@0
    37
// Windows DLL suport
sl@0
    38
#ifdef BOOST_HAS_DECLSPEC
sl@0
    39
#if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK)
sl@0
    40
// export if this is our own source, otherwise import:
sl@0
    41
#ifdef BOOST_PROGRAM_OPTIONS_SOURCE
sl@0
    42
# define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllexport)
sl@0
    43
#else
sl@0
    44
# define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllimport)
sl@0
    45
#endif  // BOOST_PROGRAM_OPTIONS_SOURCE
sl@0
    46
#endif  // DYN_LINK
sl@0
    47
#endif  // BOOST_HAS_DECLSPEC
sl@0
    48
sl@0
    49
#ifndef BOOST_PROGRAM_OPTIONS_DECL
sl@0
    50
#define BOOST_PROGRAM_OPTIONS_DECL
sl@0
    51
#endif
sl@0
    52
sl@0
    53
sl@0
    54
#endif // PROGRAM_OPTIONS_CONFIG_HK_2004_01_11
sl@0
    55