Codebase list openssl / 88c5250
pkg-config.patch applied upstream, remove it. Kurt Roeckx 12 years ago
3 changed file(s) with 1 addition(s) and 35 deletion(s). Raw diff Collapse all Expand all
22 * New upstream version
33 - Fixes CVE-2012-0884
44 - Properly fix CVE-2011-4619
5 - pkg-config.patch applied upstream, remove it.
56 * Enable assembler for all i386 arches. The assembler does proper
67 detection of CPU support, including cpuid support.
78 This should fix a problem with AES 192 and 256 with the padlock
+0
-34
debian/patches/pkg-config.patch less more
0 Index: openssl-1.0.0c/Makefile.org
1 ===================================================================
2 --- openssl-1.0.0c.orig/Makefile.org 2010-12-12 16:13:28.000000000 +0100
3 +++ openssl-1.0.0c/Makefile.org 2010-12-12 17:01:49.000000000 +0100
4 @@ -323,7 +323,8 @@
5 echo 'Description: OpenSSL cryptography library'; \
6 echo 'Version: '$(VERSION); \
7 echo 'Requires: '; \
8 - echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
9 + echo 'Libs: -L$${libdir} -lcrypto'; \
10 + echo 'Libs.private: $(EX_LIBS)'; \
11 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
12
13 libssl.pc: Makefile
14 @@ -336,7 +337,8 @@
15 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
16 echo 'Version: '$(VERSION); \
17 echo 'Requires: '; \
18 - echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
19 + echo 'Libs: -L$${libdir} -lssl'; \
20 + echo 'Libs.private: -lcrypto $(EX_LIBS)'; \
21 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
22
23 openssl.pc: Makefile
24 @@ -349,7 +351,8 @@
25 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
26 echo 'Version: '$(VERSION); \
27 echo 'Requires: '; \
28 - echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
29 + echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
30 + echo 'Libs.private: $(EX_LIBS)'; \
31 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
32
33 Makefile: Makefile.org Configure config
88 no-rpath.patch
99 no-symbolic.patch
1010 pic.patch
11 pkg-config.patch
1211 valgrind.patch
1312 rehash-crt.patch
1413 rehash_pod.patch