Disabled automatic lib selection on non-windows platforms for Borland

[SVN r15080]
This commit is contained in:
John Maddock
2002-08-24 11:56:11 +00:00
parent 38b55d0db8
commit 81f404ec69

View File

@ -52,6 +52,15 @@
# if !defined(__CONSOLE__) && !defined(_NO_VCL) # if !defined(__CONSOLE__) && !defined(_NO_VCL)
# define BOOST_REGEX_USE_VCL # define BOOST_REGEX_USE_VCL
# endif # endif
//
// if this isn't Win32 then don't automatically select link
// libraries:
//
# ifndef _Windows
# define BOOST_REGEX_NO_LIB
# define BOOST_REGEX_STATIC_LINK
# endif
#endif #endif
/***************************************************************************** /*****************************************************************************
@ -629,3 +638,4 @@ inline void pointer_construct(T* p, const T& t)