From 28abf80947d1b07c6dfe5ff9d49906b40064912e Mon Sep 17 00:00:00 2001 From: cantor Date: Fri, 19 Nov 2010 20:59:17 +0000 Subject: [PATCH] Executables need LDADD, not LIBADD. git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/branches/REL_2@3379 cb58f699-b61c-0410-a6fe-9272a202ed29 --- fastcgi/Makefile.am | 4 ++-- shibd/Makefile.am | 2 +- util/Makefile.am | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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 -- 2.1.4