Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / regex / config / borland.hpp
blob51c2126b8ec2990ff599bc43253b0f8567da3a47
1 /*
3 * Copyright (c) 1998-2002
4 * John Maddock
6 * Use, modification and distribution are subject to the
7 * Boost Software License, Version 1.0. (See accompanying file
8 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
13 * LOCATION: see http://www.boost.org for most recent version.
14 * FILE boost/regex/config/borland.hpp
15 * VERSION see <boost/version.hpp>
16 * DESCRIPTION: regex borland-specific config setup.
20 #if defined(__BORLANDC__)
21 # if (__BORLANDC__ == 0x550) || (__BORLANDC__ == 0x551)
22 // problems with std::basic_string and dll RTL:
23 # if defined(_RTLDLL) && defined(_RWSTD_COMPILE_INSTANTIATE)
24 # ifdef BOOST_REGEX_BUILD_DLL
25 # error _RWSTD_COMPILE_INSTANTIATE must not be defined when building regex++ as a DLL
26 # else
27 # pragma message("Defining _RWSTD_COMPILE_INSTANTIATE when linking to the DLL version of the RTL may produce memory corruption problems in std::basic_string, as a result of separate versions of basic_string's static data in the RTL and you're exe/dll: be warned!!")
28 # endif
29 # endif
30 # ifndef _RTLDLL
31 // this is harmless for a staic link:
32 # define _RWSTD_COMPILE_INSTANTIATE
33 # endif
34 // external templates cause problems for some reason:
35 # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
36 # endif
37 # if (__BORLANDC__ <= 0x540) && !defined(BOOST_REGEX_NO_LIB) && !defined(_NO_VCL)
38 // C++ Builder 4 and earlier, we can't tell whether we should be using
39 // the VCL runtime or not, do a static link instead:
40 # define BOOST_REGEX_STATIC_LINK
41 # endif
43 // VCL support:
44 // if we're building a console app then there can't be any VCL (can there?)
45 # if !defined(__CONSOLE__) && !defined(_NO_VCL)
46 # define BOOST_REGEX_USE_VCL
47 # endif
49 // if this isn't Win32 then don't automatically select link
50 // libraries:
52 # ifndef _Windows
53 # ifndef BOOST_REGEX_NO_LIB
54 # define BOOST_REGEX_NO_LIB
55 # endif
56 # ifndef BOOST_REGEX_STATIC_LINK
57 # define BOOST_REGEX_STATIC_LINK
58 # endif
59 # endif
61 #if __BORLANDC__ < 0x600
63 // string workarounds:
65 #include <cstring>
66 #undef strcmp
67 #undef strcpy
68 #endif
70 #endif