[cpp-xmltooling COMMIT] in /branches/REL_1: config_win32.h configure.ac msbuild/Versions.props xmltooling/Makefile.am...

noreply at shibboleth.net noreply at shibboleth.net
Sun May 5 21:28:53 EDT 2013


Author: scantor
Date: Sun May  5 21:28:52 2013
New Revision: 1025

URL: http://svn.shibboleth.net/view/cpp-xmltooling?rev=1025&view=rev
Log:
https://issues.shibboleth.net/jira/browse/CPPXT-94

Modified:
    branches/REL_1/config_win32.h
    branches/REL_1/configure.ac
    branches/REL_1/msbuild/Versions.props
    branches/REL_1/xmltooling/Makefile.am
    branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp
    branches/REL_1/xmltooling/version.h
    branches/REL_1/xmltooling/xmltooling.rc

Modified: branches/REL_1/config_win32.h
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/config_win32.h?rev=1025&r1=1024&r2=1025&view=diff
==============================================================================
--- branches/REL_1/config_win32.h (original)
+++ branches/REL_1/config_win32.h Sun May  5 21:28:52 2013
@@ -114,13 +114,13 @@
 #define PACKAGE_NAME "xmltooling"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "xmltooling 1.5.2"
+#define PACKAGE_STRING "xmltooling 1.5.3"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "xmltooling"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.5.2"
+#define PACKAGE_VERSION "1.5.3"
 
 /* Define to the necessary symbol if this constant uses a non-standard name on
    your system. */
@@ -133,7 +133,7 @@
 /* #undef TM_IN_SYS_TIME */
 
 /* Version number of package */
-#define VERSION "1.5.2"
+#define VERSION "1.5.3"
 
 /* Define if you wish to disable XML-Security-dependent features. */
 /* #undef XMLTOOLING_NO_XMLSEC */

Modified: branches/REL_1/configure.ac
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/configure.ac?rev=1025&r1=1024&r2=1025&view=diff
==============================================================================
--- branches/REL_1/configure.ac (original)
+++ branches/REL_1/configure.ac Sun May  5 21:28:52 2013
@@ -1,6 +1,6 @@
 # Process this file with autoreconf
 AC_PREREQ([2.50])
-AC_INIT([xmltooling],[1.5.2],[https://issues.shibboleth.net/],[xmltooling])
+AC_INIT([xmltooling],[1.5.3],[https://issues.shibboleth.net/],[xmltooling])
 AC_CONFIG_SRCDIR(xmltooling)
 AC_CONFIG_AUX_DIR(build-aux)
 AC_CONFIG_MACRO_DIR(m4)

Modified: branches/REL_1/msbuild/Versions.props
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/msbuild/Versions.props?rev=1025&r1=1024&r2=1025&view=diff
==============================================================================
--- branches/REL_1/msbuild/Versions.props (original)
+++ branches/REL_1/msbuild/Versions.props Sun May  5 21:28:52 2013
@@ -33,7 +33,7 @@
     <SamlComponent64>{9EE0A8D1-A6DC-4E2A-904F-BBEF70A0D67B}</SamlComponent64>
     <SamlComponent64d>{00836378-7FB9-4A09-AF49-3AA33DEF9BC6}</SamlComponent64d>
 
-    <XmlToolingVersion>1.5.2</XmlToolingVersion>
+    <XmlToolingVersion>1.5.3</XmlToolingVersion>
     <XmlToolingFileVersion>1_5</XmlToolingFileVersion>
     <!-- Change the 8 components below if the XmlToolingFileVersion name changes -->
     <XMLToolingComponent32>{53533A59-A563-439D-B13D-A4D7090C42D3}</XMLToolingComponent32>

Modified: branches/REL_1/xmltooling/Makefile.am
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/Makefile.am?rev=1025&r1=1024&r2=1025&view=diff
==============================================================================
--- branches/REL_1/xmltooling/Makefile.am (original)
+++ branches/REL_1/xmltooling/Makefile.am Sun May  5 21:28:52 2013
@@ -204,13 +204,13 @@
 libxmltooling_lite_la_SOURCES = \
 	${common_sources}
 libxmltooling_lite_la_CPPFLAGS = -DXMLTOOLING_LITE
-libxmltooling_lite_la_LDFLAGS = -version-info 6:2:0
+libxmltooling_lite_la_LDFLAGS = -version-info 6:3:0
 
 if BUILD_XMLSEC
 libxmltooling_la_SOURCES = \
 	${common_sources} \
 	${xmlsec_sources}
-libxmltooling_la_LDFLAGS = $(XMLSEC_LIBS) -version-info 6:2:0
+libxmltooling_la_LDFLAGS = $(XMLSEC_LIBS) -version-info 6:3:0
 endif
 
 install-exec-hook:

Modified: branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp?rev=1025&r1=1024&r2=1025&view=diff
==============================================================================
--- branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp (original)
+++ branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp Sun May  5 21:28:52 2013
@@ -516,6 +516,9 @@
     auto_ptr<Credential> credential(getCredential());
     m_lock = RWLock::create();
     m_credential = credential.release();
+    if (m_credential->getPrivateKey() == nullptr) {
+        log.info("no private key resolved, usable for verification/trust only");
+    }
 }
 
 FilesystemCredentialResolver::~FilesystemCredentialResolver()

Modified: branches/REL_1/xmltooling/version.h
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/version.h?rev=1025&r1=1024&r2=1025&view=diff

[... 48 lines stripped ...]


More information about the commits mailing list