forked from pool/openssl
a79c9d166c
Fix bug[ bnc#832833] openssl ssl_set_cert_masks() is broken; Add patch file: SSL_get_certificate-broken.patch (forwarded request 186693 from shawn2012) OBS-URL: https://build.opensuse.org/request/show/186710 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openssl?expand=0&rev=94
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
--- openssl-1.0.1e.orig/Makefile.org
|
|
+++ openssl-1.0.1e/Makefile.org
|
|
@@ -366,7 +366,7 @@ libcrypto.pc: Makefile
|
|
echo 'Requires: '; \
|
|
echo 'Libs: -L$${libdir} -lcrypto'; \
|
|
echo 'Libs.private: $(EX_LIBS)'; \
|
|
- echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
|
|
+ echo 'Cflags: -DOPENSSL_LOAD_CONF -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
|
|
|
|
libssl.pc: Makefile
|
|
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
|
@@ -380,7 +380,7 @@ libssl.pc: Makefile
|
|
echo 'Requires: '; \
|
|
echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
|
|
echo 'Libs.private: $(EX_LIBS)'; \
|
|
- echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
|
|
+ echo 'Cflags: -DOPENSSL_LOAD_CONF -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
|
|
|
|
openssl.pc: Makefile
|
|
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
|
@@ -394,7 +394,7 @@ openssl.pc: Makefile
|
|
echo 'Requires: '; \
|
|
echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
|
|
echo 'Libs.private: $(EX_LIBS)'; \
|
|
- echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
|
|
+ echo 'Cflags: -DOPENSSL_LOAD_CONF -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
|
|
|
|
Makefile: Makefile.org Configure config
|
|
@echo "Makefile is older than Makefile.org, Configure or config."
|