forked from pool/libcryptopp
- version update to 8.9.0 * Crypto++ 8.9 was released on October 1, 2023. The 8.9 release was a minor, unplanned release. There were no CVEs and one memory error. * The 8.9 release was driven by the fix for `ProcessData`, and the failures when `inString==outString`. Also see GH #1231, Rabbit Produces null Keystream When inString == outString. * Release notes * =========== * minor release, recompile of programs required * expanded community input and support * 88 unique contributors as of this release * add additional tests to datatest.cpp * fix SIMON128 Asan finding on POWER8 * fix AES/CFB and AES/CTR modes self test failures when using Cryptogams AES on ARMv7 * fix ARIA/CTR mode self test failures when inString==outString * fix HIGHT/CTR mode self test failures when inString==outString * fix Rabbit/CTR mode self test failures when inString==outString * fix HC128/CTR and HC256/CTR mode self test failures when inString==outString * fix Prime Table and dangling reference to a temporary * fix Singleton::Ref() when using C++11 memory fences * remove unneeded call to Crop() in Randomize() - modified patches % libcryptopp-shared.patch (refreshed) - modified sources % baselibs.conf OBS-URL: https://build.opensuse.org/request/show/1134476 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libcryptopp?expand=0&rev=77
23 lines
770 B
Diff
23 lines
770 B
Diff
Index: cryptopp-CRYPTOPP_8_9_0/GNUmakefile
|
|
===================================================================
|
|
--- cryptopp-CRYPTOPP_8_9_0.orig/GNUmakefile
|
|
+++ cryptopp-CRYPTOPP_8_9_0/GNUmakefile
|
|
@@ -198,7 +198,7 @@ else
|
|
PC_PREFIX = $(PREFIX)
|
|
endif
|
|
ifeq ($(LIBDIR),)
|
|
- LIBDIR := $(PREFIX)/lib
|
|
+ LIBDIR := $(PREFIX)/$(LIB)
|
|
PC_LIBDIR = $${prefix}/lib
|
|
else
|
|
PC_LIBDIR = $(LIBDIR)
|
|
@@ -1151,7 +1151,7 @@ SOLIB_COMPAT_SUFFIX=.$(LIB_MAJOR)
|
|
ifneq ($(IS_LINUX)$(IS_HURD),00)
|
|
# Linux uses full version suffix for shared library
|
|
SOLIB_VERSION_SUFFIX=.$(LIB_MAJOR).$(LIB_MINOR).$(LIB_PATCH)
|
|
-SOLIB_FLAGS=-Wl,-soname,libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
|
+SOLIB_FLAGS=-Wl,-soname,libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
|
endif
|
|
# Solaris uses -Wl,-h
|
|
ifeq ($(IS_SUN),1)
|