X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shibsp%2FMakefile.am;h=cd1d34805c310a09abaca17d2d4515a39b87ba37;hb=6811e40cc92f24e0c9c7e6ab2265a862b0a84b51;hp=847380f2c42ea1718fc46dfb89477bc175dcca1f;hpb=7d90669358608eba3f5f8e2025f3e12dde3c3956;p=shibboleth%2Fsp.git diff --git a/shibsp/Makefile.am b/shibsp/Makefile.am index 847380f..cd1d348 100644 --- a/shibsp/Makefile.am +++ b/shibsp/Makefile.am @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = foreign pkgsysconfdir = $(sysconfdir)/@PACKAGE@ -xmldir = $(datadir)/xml +pkgxmldir = $(datadir)/xml/@PACKAGE@ lib_LTLIBRARIES = libshibsp.la libshibsp-lite.la @@ -37,6 +37,7 @@ libshibspinclude_HEADERS = \ RequestMapper.h \ ServiceProvider.h \ SessionCache.h \ + SessionCacheEx.h \ SPConfig.h \ SPRequest.h \ TransactionLog.h \ @@ -103,7 +104,6 @@ common_sources = \ AbstractSPRequest.cpp \ Application.cpp \ ServiceProvider.cpp \ - SessionCache.cpp \ SPConfig.cpp \ attribute/Attribute.cpp \ handler/impl/AbstractHandler.cpp \ @@ -111,20 +111,27 @@ common_sources = \ handler/impl/AssertionLookup.cpp \ handler/impl/ChainingLogoutInitiator.cpp \ handler/impl/ChainingSessionInitiator.cpp \ + handler/impl/CookieSessionInitiator.cpp \ + handler/impl/FormSessionInitiator.cpp \ handler/impl/LocalLogoutInitiator.cpp \ handler/impl/LogoutHandler.cpp \ handler/impl/MetadataGenerator.cpp \ handler/impl/RemotedHandler.cpp \ + handler/impl/StatusHandler.cpp \ + handler/impl/SessionHandler.cpp \ handler/impl/SAML1Consumer.cpp \ handler/impl/SAML2Consumer.cpp \ handler/impl/SAML2ArtifactResolution.cpp \ handler/impl/SAML2Logout.cpp \ handler/impl/SAML2LogoutInitiator.cpp \ + handler/impl/SAML2NameIDMgmt.cpp \ handler/impl/SAML2SessionInitiator.cpp \ handler/impl/SAMLDSSessionInitiator.cpp \ handler/impl/SessionInitiator.cpp \ handler/impl/Shib1SessionInitiator.cpp \ + handler/impl/TransformSessionInitiator.cpp \ handler/impl/WAYFSessionInitiator.cpp \ + impl/StorageServiceSessionCache.cpp \ impl/XMLAccessControl.cpp \ impl/XMLRequestMapper.cpp \ impl/XMLServiceProvider.cpp \ @@ -140,7 +147,6 @@ common_sources = \ libshibsp_lite_la_SOURCES = \ ${common_sources} \ - impl/RemotedSessionCache.cpp \ lite/CommonDomainCookie.cpp \ lite/SAMLConstants.cpp @@ -173,10 +179,10 @@ libshibsp_la_SOURCES = \ attribute/filtering/impl/AttributeScopeMatchesShibMDScopeFunctor.cpp \ attribute/resolver/impl/ChainingAttributeResolver.cpp \ attribute/resolver/impl/QueryAttributeResolver.cpp \ + attribute/resolver/impl/ChainingAttributeExtractor.cpp \ attribute/resolver/impl/XMLAttributeExtractor.cpp \ binding/impl/ArtifactResolver.cpp \ binding/impl/SOAPClient.cpp \ - impl/StorageServiceSessionCache.cpp \ metadata/MetadataExtImpl.cpp \ metadata/MetadataExtSchemaValidators.cpp \ security/PKIXTrustEngine.cpp \ @@ -191,8 +197,11 @@ libshibsp_lite_la_CPPFLAGS = -DSHIBSP_LITE paths.h: ${srcdir}/paths.h.in Makefile ${top_builddir}/config.status rm -f $@.tmp sed < ${srcdir}/$@.in > $@.tmp \ + -e 's:@-PREFIX-@:${prefix}:g' \ -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:g' \ - -e 's:@-XMLDIR-@:${xmldir}:g' + -e 's:@-PKGXMLDIR-@:${pkgxmldir}:g' \ + -e 's:@-XMLTOOLINGXMLDIR-@:${XMLTOOLINGXMLDIR}:g' \ + -e 's:@-OPENSAMLXMLDIR-@:${OPENSAMLXMLDIR}:g' cmp -s $@ $@.tmp || mv $@.tmp $@ rm -f $@.tmp