[cpp-sp] 06/07: Link FastCGI programs directly with libxmltooling-lite

Scott Cantor cantor.2 at osu.edu
Thu Dec 20 19:46:35 EST 2018


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to annotated tag debian/2.5.2+dfsg-1
in repository cpp-sp.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=b456d9464c16cbc905e016595cfe3939902c853d

commit b456d9464c16cbc905e016595cfe3939902c853d
Author: Russ Allbery <rra at debian.org>
AuthorDate: Tue Jun 18 15:27:15 2013 -0700

    Link FastCGI programs directly with libxmltooling-lite
    
    * Link the FastCGI programs with libxmltooling-lite since they call one
      of its interfaces directly.  (This shows up as a build failure
      otherwise due to the Debian build rules use of --as-needed.)
---
 debian/changelog    | 3 +++
 fastcgi/Makefile.am | 6 ++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0e8cecc..33feadf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -22,6 +22,9 @@ shibboleth-sp2 (2.5.2+dfsg-1) UNRELEASED; urgency=low
     that have to be available to everyone and to use Require shib-session
     instead of Require valid-user.
   * Create /var/cache/shibboleth on install and remove it on purge.
+  * Link the FastCGI programs with libxmltooling-lite since they call one
+    of its interfaces directly.  (This shows up as a build failure
+    otherwise due to the Debian build rules use of --as-needed.)
 
  -- Russ Allbery <rra at debian.org>  Tue, 18 Jun 2013 11:13:01 -0700
 
diff --git a/fastcgi/Makefile.am b/fastcgi/Makefile.am
index 7c7baa3..667c6dc 100644
--- a/fastcgi/Makefile.am
+++ b/fastcgi/Makefile.am
@@ -10,13 +10,15 @@ shibauthorizer_SOURCES = shibauthorizer.cpp
 shibauthorizer_CXXFLAGS = $(FASTCGI_INCLUDE)
 shibauthorizer_LDFLAGS = $(FASTCGI_LDFLAGS)
 shibauthorizer_LDADD = $(FASTCGI_LIBS) \
-  $(top_builddir)/shibsp/libshibsp-lite.la
+  $(top_builddir)/shibsp/libshibsp-lite.la \
+  $(LITE_LIBS)
 
 shibresponder_SOURCES = shibresponder.cpp
 shibresponder_CXXFLAGS = $(FASTCGI_INCLUDE)
 shibresponder_LDFLAGS = $(FASTCGI_LDFLAGS)
 shibresponder_LDADD = $(FASTCGI_LIBS) \
-  $(top_builddir)/shibsp/libshibsp-lite.la
+  $(top_builddir)/shibsp/libshibsp-lite.la \
+  $(LITE_LIBS)
 
 endif
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list