From: cantor Date: Fri, 19 Nov 2010 20:59:17 +0000 (+0000) Subject: Executables need LDADD, not LIBADD. X-Git-Tag: 2.4.2~23 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fsp.git;a=commitdiff_plain;h=28abf80947d1b07c6dfe5ff9d49906b40064912e Executables need LDADD, not LIBADD. git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/branches/REL_2@3379 cb58f699-b61c-0410-a6fe-9272a202ed29 --- diff --git a/fastcgi/Makefile.am b/fastcgi/Makefile.am index bdf5994..134aabf 100644 --- a/fastcgi/Makefile.am +++ b/fastcgi/Makefile.am @@ -9,13 +9,13 @@ fastcgi_PROGRAMS = shibauthorizer shibresponder shibauthorizer_SOURCES = shibauthorizer.cpp shibauthorizer_CXXFLAGS = -I$(FASTCGI_INCLUDE) shibauthorizer_LDFLAGS = $(FASTCGI_LDFLAGS) -shibauthorizer_LIBADD = $(FASTCGI_LIBS) \ +shibauthorizer_LDADD = $(FASTCGI_LIBS) \ $(top_builddir)/shibsp/libshibsp-lite.la shibresponder_SOURCES = shibresponder.cpp shibresponder_CXXFLAGS = -I$(FASTCGI_INCLUDE) shibresponder_LDFLAGS = $(FASTCGI_LDFLAGS) -shibresponder_LIBADD = $(FASTCGI_LIBS) \ +shibresponder_LDADD = $(FASTCGI_LIBS) \ $(top_builddir)/shibsp/libshibsp-lite.la endif diff --git a/shibd/Makefile.am b/shibd/Makefile.am index 5fe39ec..f4d5f87 100644 --- a/shibd/Makefile.am +++ b/shibd/Makefile.am @@ -6,7 +6,7 @@ sbin_PROGRAMS = shibd shibd_SOURCES = shibd.cpp -shibd_LIBADD = $(XMLSEC_LIBS) \ +shibd_LDADD = $(XMLSEC_LIBS) \ $(top_builddir)/shibsp/libshibsp.la EXTRA_DIST = shibd.vcxproj shibd_win32.cpp resource.h shibd.rc diff --git a/util/Makefile.am b/util/Makefile.am index fa95eef..9a16904 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -4,12 +4,12 @@ bin_PROGRAMS = mdquery resolvertest resolvertest_SOURCES = resolvertest.cpp -resolvertest_LIBADD = $(XMLSEC_LIBS) \ +resolvertest_LDADD = $(XMLSEC_LIBS) \ $(top_builddir)/shibsp/libshibsp.la mdquery_SOURCES = mdquery.cpp -mdquery_LIBADD = $(XMLSEC_LIBS) \ +mdquery_LDADD = $(XMLSEC_LIBS) \ $(top_builddir)/shibsp/libshibsp.la EXTRA_DIST = mdquery.vcxproj resolvertest.vcxproj