From: Tiziano Müller Date: Mon, 20 May 2013 13:07:56 +0000 (+0200) Subject: Fix false libtool variable: _LIBS -> _LIBADD X-Git-Tag: rec-3.6.0-rc1~542^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dbf1c57e4973c683ca3bcd7e5049d19b47bb194;p=thirdparty%2Fpdns.git Fix false libtool variable: _LIBS -> _LIBADD _LIBS is not a libtool variable, thus the remotebackend module does not get linked to libcurl. Fix this by using _LIBADD instead. --- diff --git a/modules/remotebackend/Makefile.am b/modules/remotebackend/Makefile.am index 4425db05bb..0412defe2f 100644 --- a/modules/remotebackend/Makefile.am +++ b/modules/remotebackend/Makefile.am @@ -13,7 +13,7 @@ lib_LTLIBRARIES = libremotebackend.la libremotebackend_la_SOURCES=remotebackend.hh remotebackend.cc unixconnector.cc httpconnector.cc pipeconnector.cc libremotebackend_la_LDFLAGS=-module -avoid-version -libremotebackend_la_LIBS=$(LIBCURL_LIBS) +libremotebackend_la_LIBADD=$(LIBCURL_LIBS) TESTS_ENVIRONMENT = env BOOST_TEST_LOG_LEVEL=message REMOTEBACKEND_HTTP=$(REMOTEBACKEND_HTTP) ./testrunner.sh TESTS=test_remotebackend_pipe test_remotebackend_unix test_remotebackend_http test_remotebackend_post test_remotebackend_json