34 lines
1.5 KiB
Diff
34 lines
1.5 KiB
Diff
|
diff -up openssl-1.0.0e/Makefile.org.private openssl-1.0.0e/Makefile.org
|
||
|
--- openssl-1.0.0e/Makefile.org.private 2011-11-03 10:01:53.000000000 +0100
|
||
|
+++ openssl-1.0.0e/Makefile.org 2011-11-22 11:50:27.000000000 +0100
|
||
|
@@ -326,7 +326,8 @@ libcrypto.pc: Makefile
|
||
|
echo 'Description: OpenSSL cryptography library'; \
|
||
|
echo 'Version: '$(VERSION); \
|
||
|
echo 'Requires: '; \
|
||
|
- echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
|
||
|
+ echo 'Libs: -L$${libdir} -lcrypto'; \
|
||
|
+ echo 'Libs.private: $(EX_LIBS)'; \
|
||
|
echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
|
||
|
|
||
|
libssl.pc: Makefile
|
||
|
@@ -339,7 +340,8 @@ libssl.pc: Makefile
|
||
|
echo 'Description: Secure Sockets Layer and cryptography libraries'; \
|
||
|
echo 'Version: '$(VERSION); \
|
||
|
echo 'Requires: '; \
|
||
|
- echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
|
||
|
+ echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
|
||
|
+ echo 'Libs.private: $(EX_LIBS)'; \
|
||
|
echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
|
||
|
|
||
|
openssl.pc: Makefile
|
||
|
@@ -352,7 +354,8 @@ openssl.pc: Makefile
|
||
|
echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
|
||
|
echo 'Version: '$(VERSION); \
|
||
|
echo 'Requires: '; \
|
||
|
- echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
|
||
|
+ echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
|
||
|
+ echo 'Libs.private: $(EX_LIBS)'; \
|
||
|
echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
|
||
|
|
||
|
Makefile: Makefile.org Configure config
|