From 91c327bb019f3eca3d4fd2f565557f6926d4d93b Mon Sep 17 00:00:00 2001 From: oliver Kowalke Date: Wed, 14 Dec 2016 08:12:24 +0100 Subject: [PATCH] fix lib-name and linking in config.hpp --- include/boost/coroutine2/detail/config.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/coroutine2/detail/config.hpp b/include/boost/coroutine2/detail/config.hpp index cfb9584..307ee4e 100644 --- a/include/boost/coroutine2/detail/config.hpp +++ b/include/boost/coroutine2/detail/config.hpp @@ -18,7 +18,6 @@ #if (defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES2_DYN_LINK) ) && ! defined(BOOST_COROUTINES2_STATIC_LINK) # if defined(BOOST_COROUTINES2_SOURCE) # define BOOST_COROUTINES2_DECL BOOST_SYMBOL_EXPORT -# define BOOST_COROUTINES2_BUILD_DLL # else # define BOOST_COROUTINES2_DECL BOOST_SYMBOL_IMPORT # endif @@ -29,7 +28,7 @@ #endif #if ! defined(BOOST_COROUTINES2_SOURCE) && ! defined(BOOST_ALL_NO_LIB) && ! defined(BOOST_COROUTINES2_NO_LIB) -# define BOOST_LIB_NAME boost_coroutine +# define BOOST_LIB_NAME boost_coroutine2 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COROUTINES2_DYN_LINK) # define BOOST_DYN_LINK # endif