]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix false libtool variable: _LIBS -> _LIBADD
authorTiziano Müller <tm@dev-zero.ch>
Mon, 20 May 2013 13:07:56 +0000 (15:07 +0200)
committerTiziano Müller <tm@dev-zero.ch>
Mon, 22 Jul 2013 05:53:51 +0000 (07:53 +0200)
_LIBS is not a libtool variable, thus the remotebackend module does not
get linked to libcurl. Fix this by using _LIBADD instead.

modules/remotebackend/Makefile.am

index 4425db05bb561e1e1ac8cefa3ead3d9cc3019d58..0412defe2f2a5384df3494c2299068a61a1ecc8b 100644 (file)
@@ -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