[cpp-opensaml COMMIT] in /branches/REL_2: config_win32.h configure.ac saml/Makefile.am saml/saml.rc saml/saml.vcxproj...
noreply at shibboleth.net
noreply at shibboleth.net
Tue May 21 13:40:25 EDT 2013
Author: scantor
Date: Tue May 21 13:40:25 2013
New Revision: 766
URL: http://svn.shibboleth.net/view/cpp-opensaml?rev=766&view=rev
Log:
Bump version and parameterize msbuild path
Modified:
branches/REL_2/config_win32.h
branches/REL_2/configure.ac
branches/REL_2/saml/Makefile.am
branches/REL_2/saml/saml.rc
branches/REL_2/saml/saml.vcxproj
branches/REL_2/saml/version.h
branches/REL_2/samlsign/samlsign.rc
branches/REL_2/samlsign/samlsign.vcxproj
branches/REL_2/samltest/samltest.vcxproj
Modified: branches/REL_2/config_win32.h
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/config_win32.h?rev=766&r1=765&r2=766&view=diff
==============================================================================
--- branches/REL_2/config_win32.h (original)
+++ branches/REL_2/config_win32.h Tue May 21 13:40:25 2013
@@ -87,13 +87,13 @@
#define PACKAGE_NAME "opensaml"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "opensaml 2.5.2"
+#define PACKAGE_STRING "opensaml 2.5.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "opensaml"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "2.5.2"
+#define PACKAGE_VERSION "2.5.3"
/* Define to the necessary symbol if this constant uses a non-standard name on
your system. */
@@ -106,7 +106,7 @@
/* #undef TM_IN_SYS_TIME */
/* Version number of package */
-#define VERSION "2.5.2"
+#define VERSION "2.5.3"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
Modified: branches/REL_2/configure.ac
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/configure.ac?rev=766&r1=765&r2=766&view=diff
==============================================================================
--- branches/REL_2/configure.ac (original)
+++ branches/REL_2/configure.ac Tue May 21 13:40:25 2013
@@ -1,5 +1,5 @@
AC_PREREQ([2.50])
-AC_INIT([opensaml],[2.5.2],[https://issues.shibboleth.net/],[opensaml])
+AC_INIT([opensaml],[2.5.3],[https://issues.shibboleth.net/],[opensaml])
AC_CONFIG_SRCDIR(saml)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(m4)
Modified: branches/REL_2/saml/Makefile.am
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/Makefile.am?rev=766&r1=765&r2=766&view=diff
==============================================================================
--- branches/REL_2/saml/Makefile.am (original)
+++ branches/REL_2/saml/Makefile.am Tue May 21 13:40:25 2013
@@ -191,7 +191,7 @@
# this is different from the project version
# http://sources.redhat.com/autobook/autobook/autobook_91.html
-libsaml_la_LDFLAGS = -version-info 8:2:0
+libsaml_la_LDFLAGS = -version-info 8:3:0
install-exec-hook:
for la in $(lib_LTLIBRARIES) ; do rm -f $(DESTDIR)$(libdir)/$$la ; done
Modified: branches/REL_2/saml/saml.rc
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/saml.rc?rev=766&r1=765&r2=766&view=diff
==============================================================================
--- branches/REL_2/saml/saml.rc (original)
+++ branches/REL_2/saml/saml.rc Tue May 21 13:40:25 2013
@@ -28,8 +28,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 2,5,2,0
- PRODUCTVERSION 2,5,2,0
+ FILEVERSION 2,5,3,0
+ PRODUCTVERSION 2,5,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -47,7 +47,7 @@
VALUE "Comments", "\0"
VALUE "CompanyName", "Shibboleth Consortium\0"
VALUE "FileDescription", "OpenSAML Library\0"
- VALUE "FileVersion", "2, 5, 2, 0\0"
+ VALUE "FileVersion", "2, 5, 3, 0\0"
#ifdef _DEBUG
VALUE "InternalName", "saml2_5D\0"
#else
@@ -61,8 +61,8 @@
VALUE "OriginalFilename", "saml2_5.dll\0"
#endif
VALUE "PrivateBuild", "\0"
- VALUE "ProductName", "OpenSAML 2.5.2\0"
- VALUE "ProductVersion", "2, 5, 2, 0\0"
+ VALUE "ProductName", "OpenSAML 2.5.3\0"
+ VALUE "ProductVersion", "2, 5, 3, 0\0"
VALUE "SpecialBuild", "\0"
END
END
Modified: branches/REL_2/saml/saml.vcxproj
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/saml.vcxproj?rev=766&r1=765&r2=766&view=diff
==============================================================================
--- branches/REL_2/saml/saml.vcxproj (original)
+++ branches/REL_2/saml/saml.vcxproj Tue May 21 13:40:25 2013
@@ -59,8 +59,8 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<Import Project="..\..\BuildPath.props" />
- <Import Project="..\MsBuild\Versions.props" />
- <Import Project="..\MsBuild\Includes.props" />
+ <Import Project="$(ParentRoot)\Versions.props" />
+ <Import Project="$(ParentRoot)\Includes.props" />
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
Modified: branches/REL_2/saml/version.h
[... 92 lines stripped ...]
More information about the commits
mailing list