svn commit: r217574 - in releng/7.4/secure/lib: libcrypto libssl

Simon L. Nielsen simon at FreeBSD.org
Wed Jan 19 07:44:47 UTC 2011


Author: simon
Date: Wed Jan 19 07:44:47 2011
New Revision: 217574
URL: http://svn.freebsd.org/changeset/base/217574

Log:
  MFS7 r217562:
  
   Decrease the libcrypto and libssl shared object version numbers from 6
   to 5. They were accidentally bumped in r215997 (on 2010-11-28) with the
   merge of OpenSSL 0.9.8p, but unfortunately this was not caught until
   now.
  
   Also add compat links for libcrypto.so.6 / libssl.so.6 (pointing to
   their .5 counterparts) in case any users have compiled any third party
   during the time stable/7 (and releng/7.4) were broken.
  
   This is deemed the last poor of bad options.  Had the number bump not
   been reverted binary packages for stable/7 would not have worked on the
   still supported 7.3 and 7.1 releases.
  
  Approved by:	re (kensmith)

Modified:
  releng/7.4/secure/lib/libcrypto/Makefile
  releng/7.4/secure/lib/libssl/Makefile
Directory Properties:
  releng/7.4/secure/lib/libcrypto/   (props changed)
  releng/7.4/secure/lib/libssl/   (props changed)

Modified: releng/7.4/secure/lib/libcrypto/Makefile
==============================================================================
--- releng/7.4/secure/lib/libcrypto/Makefile	Wed Jan 19 07:06:28 2011	(r217573)
+++ releng/7.4/secure/lib/libcrypto/Makefile	Wed Jan 19 07:44:47 2011	(r217574)
@@ -6,7 +6,9 @@ SUBDIR=		engines
 .include <bsd.own.mk>
 
 LIB=		crypto
-SHLIB_MAJOR=	6
+SHLIB_MAJOR=	5
+
+SYMLINKS=	lib${LIB}.so.5 ${SHLIBDIR}/lib${LIB}.so.6
 
 NO_LINT=
 

Modified: releng/7.4/secure/lib/libssl/Makefile
==============================================================================
--- releng/7.4/secure/lib/libssl/Makefile	Wed Jan 19 07:06:28 2011	(r217573)
+++ releng/7.4/secure/lib/libssl/Makefile	Wed Jan 19 07:44:47 2011	(r217574)
@@ -1,7 +1,9 @@
 # $FreeBSD$
 
 LIB=		ssl
-SHLIB_MAJOR=	6
+SHLIB_MAJOR=	5
+
+SYMLINKS=	lib${LIB}.so.5 ${SHLIBDIR}/lib${LIB}.so.6
 
 NO_LINT=
 


More information about the svn-src-all mailing list