[cpp-sp] branch master updated: Bump version.
Scott Cantor
cantor.2 at osu.edu
Fri Oct 12 14:11:08 EDT 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=13c7ee958824dda424e2b64ccc2c53e249adc252
The following commit(s) were added to refs/heads/master by this push:
new 13c7ee9 Bump version.
13c7ee9 is described below
commit 13c7ee958824dda424e2b64ccc2c53e249adc252
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Oct 12 14:11:05 2018 -0400
Bump version.
---
config_win32.h | 6 +-
configure.ac | 2 +-
shibsp/Makefile.am | 628 ++++++++++++++++++++++++------------------------
shibsp/version.h | 2 +-
util/resourceCommon.rci | 6 +-
5 files changed, 322 insertions(+), 322 deletions(-)
diff --git a/config_win32.h b/config_win32.h
index 986eea7..48866da 100644
--- a/config_win32.h
+++ b/config_win32.h
@@ -121,13 +121,13 @@
#define PACKAGE_NAME "shibboleth"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "shibboleth 3.0.2"
+#define PACKAGE_STRING "shibboleth 3.0.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "shibboleth-sp"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "3.0.2"
+#define PACKAGE_VERSION "3.0.3"
/* Define to the necessary symbol if this constant uses a non-standard name on
your system. */
@@ -140,7 +140,7 @@
/* #undef TM_IN_SYS_TIME */
/* Version number of package */
-#define VERSION "3.0.2"
+#define VERSION "3.0.3"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
diff --git a/configure.ac b/configure.ac
index d5516fe..7d15481 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.50])
-AC_INIT([shibboleth],[3.0.2],[https://issues.shibboleth.net/],[shibboleth-sp])
+AC_INIT([shibboleth],[3.0.3],[https://issues.shibboleth.net/],[shibboleth-sp])
AC_CONFIG_SRCDIR(shibsp)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(m4)
diff --git a/shibsp/Makefile.am b/shibsp/Makefile.am
index 79c6720..2a5b61d 100644
--- a/shibsp/Makefile.am
+++ b/shibsp/Makefile.am
@@ -1,314 +1,314 @@
-AUTOMAKE_OPTIONS = foreign subdir-objects
-
-lib_LTLIBRARIES = libshibsp.la libshibsp-lite.la
-
-libshibspincludedir = $(includedir)/shibsp
-
-attrincludedir = $(includedir)/shibsp/attribute
-
-attrresincludedir = $(includedir)/shibsp/attribute/resolver
-
-attrfiltincludedir = $(includedir)/shibsp/attribute/filtering
-
-bindincludedir = $(includedir)/shibsp/binding
-
-handincludedir = $(includedir)/shibsp/handler
-
-liteincludedir = $(includedir)/shibsp/lite
-
-mdincludedir = $(includedir)/shibsp/metadata
-
-remincludedir = $(includedir)/shibsp/remoting
-
-secincludedir = $(includedir)/shibsp/security
-
-utilincludedir = $(includedir)/shibsp/util
-
-nodist_libshibspinclude_HEADERS = \
- config_pub.h \
- paths.h
-
-libshibspinclude_HEADERS = \
- AbstractSPRequest.h \
- AccessControl.h \
- Application.h \
- base.h \
- exceptions.h \
- GSSRequest.h \
- RequestMapper.h \
- ServiceProvider.h \
- SessionCache.h \
- SPConfig.h \
- SPRequest.h \
- TransactionLog.h \
- version.h
-
-attrinclude_HEADERS = \
- attribute/Attribute.h \
- attribute/AttributeDecoder.h \
- attribute/BinaryAttribute.h \
- attribute/ExtensibleAttribute.h \
- attribute/NameIDAttribute.h \
- attribute/ScopedAttribute.h \
- attribute/SimpleAttribute.h \
- attribute/XMLAttribute.h
-
-attrfiltinclude_HEADERS = \
- attribute/filtering/AttributeFilter.h \
- attribute/filtering/BasicFilteringContext.h \
- attribute/filtering/FilteringContext.h \
- attribute/filtering/FilterPolicyContext.h \
- attribute/filtering/MatchFunctor.h
-
-attrresinclude_HEADERS = \
- attribute/resolver/AttributeExtractor.h \
- attribute/resolver/AttributeResolver.h \
- attribute/resolver/ResolutionContext.h
-
-bindinclude_HEADERS = \
- binding/ArtifactResolver.h \
- binding/ProtocolProvider.h \
- binding/SOAPClient.h
-
-handinclude_HEADERS = \
- handler/AbstractHandler.h \
- handler/AssertionConsumerService.h \
- handler/Handler.h \
- handler/LogoutHandler.h \
- handler/LogoutInitiator.h \
- handler/RemotedHandler.h \
- handler/SecuredHandler.h \
- handler/SessionInitiator.h
-
-liteinclude_HEADERS = \
- lite/CommonDomainCookie.h \
- lite/SAMLConstants.h
-
-mdinclude_HEADERS = \
- metadata/MetadataExt.h \
- metadata/MetadataProviderCriteria.h
-
-reminclude_HEADERS = \
- remoting/ddf.h \
- remoting/ListenerService.h
-
-secinclude_HEADERS = \
- security/PKIXTrustEngine.h \
- security/SecurityPolicy.h \
- security/SecurityPolicyProvider.h
-
-utilinclude_HEADERS = \
- util/CGIParser.h \
- util/DOMPropertySet.h \
- util/IPRange.h \
- util/PropertySet.h \
- util/SPConstants.h \
- util/TemplateParameters.h
-
-noinst_HEADERS = \
- internal.h \
- impl/StoredSession.h \
- impl/StorageServiceSessionCache.h \
- impl/XMLApplication.h \
- impl/XMLServiceProvider.h \
- remoting/impl/SocketListener.h
-
-common_sources = \
- AbstractSPRequest.cpp \
- Application.cpp \
- ServiceProvider.cpp \
- SPConfig.cpp \
- version.cpp \
- attribute/Attribute.cpp \
- attribute/BinaryAttribute.cpp \
- attribute/ExtensibleAttribute.cpp \
- attribute/NameIDAttribute.cpp \
- attribute/SimpleAttribute.cpp \
- attribute/ScopedAttribute.cpp \
- attribute/XMLAttribute.cpp \
- binding/impl/XMLProtocolProvider.cpp \
- handler/impl/AbstractHandler.cpp \
- handler/impl/AdminLogoutInitiator.cpp \
- handler/impl/AssertionConsumerService.cpp \
- handler/impl/AssertionLookup.cpp \
- handler/impl/AttributeCheckerHandler.cpp \
- handler/impl/ChainingLogoutInitiator.cpp \
- handler/impl/ChainingSessionInitiator.cpp \
- handler/impl/CookieSessionInitiator.cpp \
- handler/impl/DiscoveryFeed.cpp \
- handler/impl/ExternalAuthHandler.cpp \
- handler/impl/FormSessionInitiator.cpp \
- handler/impl/LocalLogoutInitiator.cpp \
- handler/impl/LogoutHandler.cpp \
- handler/impl/LogoutInitiator.cpp \
- handler/impl/MetadataGenerator.cpp \
- handler/impl/RemotedHandler.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/SecuredHandler.cpp \
- handler/impl/SessionHandler.cpp \
- handler/impl/SessionInitiator.cpp \
- handler/impl/Shib1SessionInitiator.cpp \
- handler/impl/StatusHandler.cpp \
- handler/impl/TransformSessionInitiator.cpp \
- handler/impl/WAYFSessionInitiator.cpp \
- impl/ChainingAccessControl.cpp \
- impl/StoredSession.cpp \
- impl/StorageServiceSessionCache.cpp \
- impl/XMLAccessControl.cpp \
- impl/XMLApplication.cpp \
- impl/XMLRequestMapper.cpp \
- impl/XMLServiceProvider.cpp \
- remoting/impl/ddf.cpp \
- remoting/impl/ListenerService.cpp \
- remoting/impl/SocketListener.cpp \
- remoting/impl/TCPListener.cpp \
- remoting/impl/UnixListener.cpp \
- util/CGIParser.cpp \
- util/DOMPropertySet.cpp \
- util/IPRange.cpp \
- util/SPConstants.cpp \
- util/TemplateParameters.cpp
-
-libshibsp_lite_la_SOURCES = \
- ${common_sources} \
- lite/CommonDomainCookie.cpp \
- lite/SAMLConstants.cpp
-
-libshibsp_la_SOURCES = \
- ${common_sources} \
- attribute/Base64AttributeDecoder.cpp \
- attribute/DOMAttributeDecoder.cpp \
- attribute/KeyInfoAttributeDecoder.cpp \
- attribute/NameIDAttributeDecoder.cpp \
- attribute/NameIDFromScopedAttributeDecoder.cpp \
- attribute/ScopedAttributeDecoder.cpp \
- attribute/StringAttributeDecoder.cpp \
- attribute/XMLAttributeDecoder.cpp \
- attribute/filtering/impl/AttributeFilter.cpp \
- attribute/filtering/impl/ChainingAttributeFilter.cpp \
- attribute/filtering/impl/DummyAttributeFilter.cpp \
- attribute/filtering/impl/XMLAttributeFilter.cpp \
- attribute/filtering/impl/BasicFilteringContext.cpp \
- attribute/filtering/impl/MatchFunctor.cpp \
- attribute/filtering/impl/AndMatchFunctor.cpp \
- attribute/filtering/impl/AnyMatchFunctor.cpp \
- attribute/filtering/impl/NotMatchFunctor.cpp \
- attribute/filtering/impl/OrMatchFunctor.cpp \
- attribute/filtering/impl/AttributeIssuerStringFunctor.cpp \
- attribute/filtering/impl/AttributeRequesterStringFunctor.cpp \
- attribute/filtering/impl/AttributeScopeStringFunctor.cpp \
- attribute/filtering/impl/AttributeValueStringFunctor.cpp \
- attribute/filtering/impl/AuthenticationMethodStringFunctor.cpp \
- attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp \
- attribute/filtering/impl/AttributeRequesterRegexFunctor.cpp \
- attribute/filtering/impl/AttributeScopeRegexFunctor.cpp \
- attribute/filtering/impl/AttributeValueRegexFunctor.cpp \
- attribute/filtering/impl/AuthenticationMethodRegexFunctor.cpp \
- attribute/filtering/impl/NameIDQualifierStringFunctor.cpp \
- attribute/filtering/impl/NumberOfAttributeValuesFunctor.cpp \
- attribute/filtering/impl/AttributeIssuerInEntityGroupFunctor.cpp \
- attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp \
- attribute/filtering/impl/AttributeIssuerEntityAttributeFunctor.cpp \
- attribute/filtering/impl/AttributeRequesterEntityAttributeFunctor.cpp \
- attribute/filtering/impl/AttributeIssuerEntityMatcherFunctor.cpp \
- attribute/filtering/impl/AttributeRequesterEntityMatcherFunctor.cpp \
- attribute/filtering/impl/AttributeMatchesShibMDScopeFunctor.cpp \
- attribute/filtering/impl/RegistrationAuthorityFunctor.cpp \
- attribute/resolver/impl/ChainingAttributeResolver.cpp \
- attribute/resolver/impl/QueryAttributeResolver.cpp \
- attribute/resolver/impl/SimpleAggregationAttributeResolver.cpp \
- attribute/resolver/impl/AssertionAttributeExtractor.cpp \
- attribute/resolver/impl/ChainingAttributeExtractor.cpp \
- attribute/resolver/impl/DelegationAttributeExtractor.cpp \
- attribute/resolver/impl/KeyDescriptorAttributeExtractor.cpp \
- attribute/resolver/impl/MetadataAttributeExtractor.cpp \
- attribute/resolver/impl/XMLAttributeExtractor.cpp \
- binding/impl/ArtifactResolver.cpp \
- binding/impl/SOAPClient.cpp \
- impl/TransactionLog.cpp \
- impl/XMLSecurityPolicyProvider.cpp \
- metadata/DynamicMetadataProvider.cpp \
- metadata/MetadataExtImpl.cpp \
- metadata/MetadataExtSchemaValidators.cpp \
- metadata/MetadataProviderCriteria.cpp \
- security/PKIXTrustEngine.cpp \
- security/SecurityPolicy.cpp
-
-# this is different from the project version
-# http://sources.redhat.com/autobook/autobook/autobook_91.html
-libshibsp_la_LDFLAGS = -version-info 8:2:0
-libshibsp_la_CXXFLAGS = \
- $(AM_CXXFLAGS) \
- $(BOOST_CPPFLAGS) \
- $(PTHREAD_CFLAGS) \
- $(gss_CFLAGS) $(gnu_gss_CFLAGS) \
- $(log4shib_CFLAGS) $(log4cpp_CFLAGS) \
- $(opensaml_CFLAGS) \
- $(xerces_CFLAGS) \
- $(xmlsec_CFLAGS) \
- $(xmltooling_CFLAGS)
-libshibsp_la_LIBADD = \
- $(PTHREAD_LIBS) \
- $(gss_LIBS) $(gnu_gss_LIBS) \
- $(log4shib_LIBS) $(log4cpp_LIBS) \
- $(opensaml_LIBS) \
- $(xerces_LIBS) \
- $(xmlsec_LIBS) \
- $(xmltooling_LIBS)
-libshibsp_lite_la_LDFLAGS = -version-info 8:2:0
-libshibsp_lite_la_CXXFLAGS = -DSHIBSP_LITE \
- $(AM_CXXFLAGS) \
- $(BOOST_CPPFLAGS) \
- $(PTHREAD_CFLAGS) \
- $(gss_CFLAGS) $(gnu_gss_CFLAGS) \
- $(log4shib_CFLAGS) $(log4cpp_CFLAGS) \
- $(xerces_CFLAGS) \
- $(xmltooling_lite_CFLAGS)
-libshibsp_lite_la_LIBADD = \
- $(PTHREAD_LIBS) \
- $(gss_LIBS) $(gnu_gss_LIBS) \
- $(log4shib_LIBS) $(log4cpp_LIBS) \
- $(xerces_LIBS) \
- $(xmltooling_lite_LIBS)
-
-pkgsysconfdir = $(sysconfdir)/@PACKAGE_NAME@
-pkgxmldir = $(datadir)/xml/@PACKAGE_NAME@
-logdir = ${localstatedir}/log
-rundir = $(localstatedir)/run
-cachedir = $(localstatedir)/cache
-xmldir = $(datadir)/xml
-
-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:@-LIBDIR-@:${libdir}:g' \
- -e 's:@-SYSCONFDIR-@:${sysconfdir}:g' \
- -e 's:@-LOGDIR-@:${logdir}:g' \
- -e 's:@-RUNDIR-@:${rundir}:g' \
- -e 's:@-CACHEDIR-@:${cachedir}:g' \
- -e 's:@-XMLDIR-@:${xmldir}:g' \
- -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:g' \
- -e 's:@-PKGXMLDIR-@:${pkgxmldir}:g' \
- -e 's:@-XMLTOOLINGXMLDIR-@:${XMLTOOLINGXMLDIR}:g' \
- -e 's:@-OPENSAMLXMLDIR-@:${OPENSAMLXMLDIR}:g'
- cmp -s $@ $@.tmp || mv $@.tmp $@
- rm -f $@.tmp
-
-EXTRA_DIST = \
- config_pub.h.in \
- config_pub_win32.h\
- paths.h.in \
- resource.h \
- shibsp.rc
-
-BUILT_SOURCES = paths.h
-
-CLEANFILES = paths.h
+AUTOMAKE_OPTIONS = foreign subdir-objects
+
+lib_LTLIBRARIES = libshibsp.la libshibsp-lite.la
+
+libshibspincludedir = $(includedir)/shibsp
+
+attrincludedir = $(includedir)/shibsp/attribute
+
+attrresincludedir = $(includedir)/shibsp/attribute/resolver
+
+attrfiltincludedir = $(includedir)/shibsp/attribute/filtering
+
+bindincludedir = $(includedir)/shibsp/binding
+
+handincludedir = $(includedir)/shibsp/handler
+
+liteincludedir = $(includedir)/shibsp/lite
+
+mdincludedir = $(includedir)/shibsp/metadata
+
+remincludedir = $(includedir)/shibsp/remoting
+
+secincludedir = $(includedir)/shibsp/security
+
+utilincludedir = $(includedir)/shibsp/util
+
+nodist_libshibspinclude_HEADERS = \
+ config_pub.h \
+ paths.h
+
+libshibspinclude_HEADERS = \
+ AbstractSPRequest.h \
+ AccessControl.h \
+ Application.h \
+ base.h \
+ exceptions.h \
+ GSSRequest.h \
+ RequestMapper.h \
+ ServiceProvider.h \
+ SessionCache.h \
+ SPConfig.h \
+ SPRequest.h \
+ TransactionLog.h \
+ version.h
+
+attrinclude_HEADERS = \
+ attribute/Attribute.h \
+ attribute/AttributeDecoder.h \
+ attribute/BinaryAttribute.h \
+ attribute/ExtensibleAttribute.h \
+ attribute/NameIDAttribute.h \
+ attribute/ScopedAttribute.h \
+ attribute/SimpleAttribute.h \
+ attribute/XMLAttribute.h
+
+attrfiltinclude_HEADERS = \
+ attribute/filtering/AttributeFilter.h \
+ attribute/filtering/BasicFilteringContext.h \
+ attribute/filtering/FilteringContext.h \
+ attribute/filtering/FilterPolicyContext.h \
+ attribute/filtering/MatchFunctor.h
+
+attrresinclude_HEADERS = \
+ attribute/resolver/AttributeExtractor.h \
+ attribute/resolver/AttributeResolver.h \
+ attribute/resolver/ResolutionContext.h
+
+bindinclude_HEADERS = \
+ binding/ArtifactResolver.h \
+ binding/ProtocolProvider.h \
+ binding/SOAPClient.h
+
+handinclude_HEADERS = \
+ handler/AbstractHandler.h \
+ handler/AssertionConsumerService.h \
+ handler/Handler.h \
+ handler/LogoutHandler.h \
+ handler/LogoutInitiator.h \
+ handler/RemotedHandler.h \
+ handler/SecuredHandler.h \
+ handler/SessionInitiator.h
+
+liteinclude_HEADERS = \
+ lite/CommonDomainCookie.h \
+ lite/SAMLConstants.h
+
+mdinclude_HEADERS = \
+ metadata/MetadataExt.h \
+ metadata/MetadataProviderCriteria.h
+
+reminclude_HEADERS = \
+ remoting/ddf.h \
+ remoting/ListenerService.h
+
+secinclude_HEADERS = \
+ security/PKIXTrustEngine.h \
+ security/SecurityPolicy.h \
+ security/SecurityPolicyProvider.h
+
+utilinclude_HEADERS = \
+ util/CGIParser.h \
+ util/DOMPropertySet.h \
+ util/IPRange.h \
+ util/PropertySet.h \
+ util/SPConstants.h \
+ util/TemplateParameters.h
+
+noinst_HEADERS = \
+ internal.h \
+ impl/StoredSession.h \
+ impl/StorageServiceSessionCache.h \
+ impl/XMLApplication.h \
+ impl/XMLServiceProvider.h \
+ remoting/impl/SocketListener.h
+
+common_sources = \
+ AbstractSPRequest.cpp \
+ Application.cpp \
+ ServiceProvider.cpp \
+ SPConfig.cpp \
+ version.cpp \
+ attribute/Attribute.cpp \
+ attribute/BinaryAttribute.cpp \
+ attribute/ExtensibleAttribute.cpp \
+ attribute/NameIDAttribute.cpp \
+ attribute/SimpleAttribute.cpp \
+ attribute/ScopedAttribute.cpp \
+ attribute/XMLAttribute.cpp \
+ binding/impl/XMLProtocolProvider.cpp \
+ handler/impl/AbstractHandler.cpp \
+ handler/impl/AdminLogoutInitiator.cpp \
+ handler/impl/AssertionConsumerService.cpp \
+ handler/impl/AssertionLookup.cpp \
+ handler/impl/AttributeCheckerHandler.cpp \
+ handler/impl/ChainingLogoutInitiator.cpp \
+ handler/impl/ChainingSessionInitiator.cpp \
+ handler/impl/CookieSessionInitiator.cpp \
+ handler/impl/DiscoveryFeed.cpp \
+ handler/impl/ExternalAuthHandler.cpp \
+ handler/impl/FormSessionInitiator.cpp \
+ handler/impl/LocalLogoutInitiator.cpp \
+ handler/impl/LogoutHandler.cpp \
+ handler/impl/LogoutInitiator.cpp \
+ handler/impl/MetadataGenerator.cpp \
+ handler/impl/RemotedHandler.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/SecuredHandler.cpp \
+ handler/impl/SessionHandler.cpp \
+ handler/impl/SessionInitiator.cpp \
+ handler/impl/Shib1SessionInitiator.cpp \
+ handler/impl/StatusHandler.cpp \
+ handler/impl/TransformSessionInitiator.cpp \
+ handler/impl/WAYFSessionInitiator.cpp \
+ impl/ChainingAccessControl.cpp \
+ impl/StoredSession.cpp \
+ impl/StorageServiceSessionCache.cpp \
+ impl/XMLAccessControl.cpp \
+ impl/XMLApplication.cpp \
+ impl/XMLRequestMapper.cpp \
+ impl/XMLServiceProvider.cpp \
+ remoting/impl/ddf.cpp \
+ remoting/impl/ListenerService.cpp \
+ remoting/impl/SocketListener.cpp \
+ remoting/impl/TCPListener.cpp \
+ remoting/impl/UnixListener.cpp \
+ util/CGIParser.cpp \
+ util/DOMPropertySet.cpp \
+ util/IPRange.cpp \
+ util/SPConstants.cpp \
+ util/TemplateParameters.cpp
+
+libshibsp_lite_la_SOURCES = \
+ ${common_sources} \
+ lite/CommonDomainCookie.cpp \
+ lite/SAMLConstants.cpp
+
+libshibsp_la_SOURCES = \
+ ${common_sources} \
+ attribute/Base64AttributeDecoder.cpp \
+ attribute/DOMAttributeDecoder.cpp \
+ attribute/KeyInfoAttributeDecoder.cpp \
+ attribute/NameIDAttributeDecoder.cpp \
+ attribute/NameIDFromScopedAttributeDecoder.cpp \
+ attribute/ScopedAttributeDecoder.cpp \
+ attribute/StringAttributeDecoder.cpp \
+ attribute/XMLAttributeDecoder.cpp \
+ attribute/filtering/impl/AttributeFilter.cpp \
+ attribute/filtering/impl/ChainingAttributeFilter.cpp \
+ attribute/filtering/impl/DummyAttributeFilter.cpp \
+ attribute/filtering/impl/XMLAttributeFilter.cpp \
+ attribute/filtering/impl/BasicFilteringContext.cpp \
+ attribute/filtering/impl/MatchFunctor.cpp \
+ attribute/filtering/impl/AndMatchFunctor.cpp \
+ attribute/filtering/impl/AnyMatchFunctor.cpp \
+ attribute/filtering/impl/NotMatchFunctor.cpp \
+ attribute/filtering/impl/OrMatchFunctor.cpp \
+ attribute/filtering/impl/AttributeIssuerStringFunctor.cpp \
+ attribute/filtering/impl/AttributeRequesterStringFunctor.cpp \
+ attribute/filtering/impl/AttributeScopeStringFunctor.cpp \
+ attribute/filtering/impl/AttributeValueStringFunctor.cpp \
+ attribute/filtering/impl/AuthenticationMethodStringFunctor.cpp \
+ attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp \
+ attribute/filtering/impl/AttributeRequesterRegexFunctor.cpp \
+ attribute/filtering/impl/AttributeScopeRegexFunctor.cpp \
+ attribute/filtering/impl/AttributeValueRegexFunctor.cpp \
+ attribute/filtering/impl/AuthenticationMethodRegexFunctor.cpp \
+ attribute/filtering/impl/NameIDQualifierStringFunctor.cpp \
+ attribute/filtering/impl/NumberOfAttributeValuesFunctor.cpp \
+ attribute/filtering/impl/AttributeIssuerInEntityGroupFunctor.cpp \
+ attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp \
+ attribute/filtering/impl/AttributeIssuerEntityAttributeFunctor.cpp \
+ attribute/filtering/impl/AttributeRequesterEntityAttributeFunctor.cpp \
+ attribute/filtering/impl/AttributeIssuerEntityMatcherFunctor.cpp \
+ attribute/filtering/impl/AttributeRequesterEntityMatcherFunctor.cpp \
+ attribute/filtering/impl/AttributeMatchesShibMDScopeFunctor.cpp \
+ attribute/filtering/impl/RegistrationAuthorityFunctor.cpp \
+ attribute/resolver/impl/ChainingAttributeResolver.cpp \
+ attribute/resolver/impl/QueryAttributeResolver.cpp \
+ attribute/resolver/impl/SimpleAggregationAttributeResolver.cpp \
+ attribute/resolver/impl/AssertionAttributeExtractor.cpp \
+ attribute/resolver/impl/ChainingAttributeExtractor.cpp \
+ attribute/resolver/impl/DelegationAttributeExtractor.cpp \
+ attribute/resolver/impl/KeyDescriptorAttributeExtractor.cpp \
+ attribute/resolver/impl/MetadataAttributeExtractor.cpp \
+ attribute/resolver/impl/XMLAttributeExtractor.cpp \
+ binding/impl/ArtifactResolver.cpp \
+ binding/impl/SOAPClient.cpp \
+ impl/TransactionLog.cpp \
+ impl/XMLSecurityPolicyProvider.cpp \
+ metadata/DynamicMetadataProvider.cpp \
+ metadata/MetadataExtImpl.cpp \
+ metadata/MetadataExtSchemaValidators.cpp \
+ metadata/MetadataProviderCriteria.cpp \
+ security/PKIXTrustEngine.cpp \
+ security/SecurityPolicy.cpp
+
+# this is different from the project version
+# http://sources.redhat.com/autobook/autobook/autobook_91.html
+libshibsp_la_LDFLAGS = -version-info 8:3:0
+libshibsp_la_CXXFLAGS = \
+ $(AM_CXXFLAGS) \
+ $(BOOST_CPPFLAGS) \
+ $(PTHREAD_CFLAGS) \
+ $(gss_CFLAGS) $(gnu_gss_CFLAGS) \
+ $(log4shib_CFLAGS) $(log4cpp_CFLAGS) \
+ $(opensaml_CFLAGS) \
+ $(xerces_CFLAGS) \
+ $(xmlsec_CFLAGS) \
+ $(xmltooling_CFLAGS)
+libshibsp_la_LIBADD = \
+ $(PTHREAD_LIBS) \
+ $(gss_LIBS) $(gnu_gss_LIBS) \
+ $(log4shib_LIBS) $(log4cpp_LIBS) \
+ $(opensaml_LIBS) \
+ $(xerces_LIBS) \
+ $(xmlsec_LIBS) \
+ $(xmltooling_LIBS)
+libshibsp_lite_la_LDFLAGS = -version-info 8:3:0
+libshibsp_lite_la_CXXFLAGS = -DSHIBSP_LITE \
+ $(AM_CXXFLAGS) \
+ $(BOOST_CPPFLAGS) \
+ $(PTHREAD_CFLAGS) \
+ $(gss_CFLAGS) $(gnu_gss_CFLAGS) \
+ $(log4shib_CFLAGS) $(log4cpp_CFLAGS) \
+ $(xerces_CFLAGS) \
+ $(xmltooling_lite_CFLAGS)
+libshibsp_lite_la_LIBADD = \
+ $(PTHREAD_LIBS) \
+ $(gss_LIBS) $(gnu_gss_LIBS) \
+ $(log4shib_LIBS) $(log4cpp_LIBS) \
+ $(xerces_LIBS) \
+ $(xmltooling_lite_LIBS)
+
+pkgsysconfdir = $(sysconfdir)/@PACKAGE_NAME@
+pkgxmldir = $(datadir)/xml/@PACKAGE_NAME@
+logdir = ${localstatedir}/log
+rundir = $(localstatedir)/run
+cachedir = $(localstatedir)/cache
+xmldir = $(datadir)/xml
+
+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:@-LIBDIR-@:${libdir}:g' \
+ -e 's:@-SYSCONFDIR-@:${sysconfdir}:g' \
+ -e 's:@-LOGDIR-@:${logdir}:g' \
+ -e 's:@-RUNDIR-@:${rundir}:g' \
+ -e 's:@-CACHEDIR-@:${cachedir}:g' \
+ -e 's:@-XMLDIR-@:${xmldir}:g' \
+ -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:g' \
+ -e 's:@-PKGXMLDIR-@:${pkgxmldir}:g' \
+ -e 's:@-XMLTOOLINGXMLDIR-@:${XMLTOOLINGXMLDIR}:g' \
+ -e 's:@-OPENSAMLXMLDIR-@:${OPENSAMLXMLDIR}:g'
+ cmp -s $@ $@.tmp || mv $@.tmp $@
+ rm -f $@.tmp
+
+EXTRA_DIST = \
+ config_pub.h.in \
+ config_pub_win32.h\
+ paths.h.in \
+ resource.h \
+ shibsp.rc
+
+BUILT_SOURCES = paths.h
+
+CLEANFILES = paths.h
diff --git a/shibsp/version.h b/shibsp/version.h
index b53521e..d3e52f3 100644
--- a/shibsp/version.h
+++ b/shibsp/version.h
@@ -44,7 +44,7 @@
#define SHIBSP_VERSION_MAJOR 3
#define SHIBSP_VERSION_MINOR 0
-#define SHIBSP_VERSION_REVISION 2
+#define SHIBSP_VERSION_REVISION 3
/** DO NOT MODIFY BELOW THIS LINE */
diff --git a/util/resourceCommon.rci b/util/resourceCommon.rci
index 2cfb376..ca12b6e 100644
--- a/util/resourceCommon.rci
+++ b/util/resourceCommon.rci
@@ -1,10 +1,10 @@
VALUE "Comments", "\0"
VALUE "CompanyName", "Shibboleth Consortium\0"
- VALUE "FileVersion", "3,0,2,0\0"
+ VALUE "FileVersion", "3,0,3,0\0"
VALUE "LegalCopyright", "Copyright � 2018 UCAID\0"
VALUE "LegalTrademarks", "\0"
VALUE "PrivateBuild", "\0"
- VALUE "ProductName", "Shibboleth 3.0.2\0"
- VALUE "ProductVersion", "3, 0, 2, 0\0"
+ VALUE "ProductName", "Shibboleth 3.0.3\0"
+ VALUE "ProductVersion", "3, 0, 3, 0\0"
VALUE "SpecialBuild", "\0"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list