From cd5db2b09f6ef684042d98f234ad89bcc5a77a00 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 21 Jan 2004 11:55:11 +0000 Subject: [PATCH] Added missing #undef (previously one symbol was left defined when the header exited, which caused problems when including two or more libs, one a static link and one a dynamic link). [SVN r21857] --- include/boost/config/auto_link.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/config/auto_link.hpp b/include/boost/config/auto_link.hpp index eade040d..fc2e3b81 100644 --- a/include/boost/config/auto_link.hpp +++ b/include/boost/config/auto_link.hpp @@ -296,6 +296,9 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // // finally undef any macros we may have set: // +#ifdef BOOST_LIB_PREFIX +# undef BOOST_LIB_PREFIX +#endif #if defined(BOOST_LIB_NAME) # undef BOOST_LIB_NAME #endif