diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 1999-11-07 22:19:49 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 1999-11-07 22:19:49 +0000 |
commit | bd8d8600c4cd2d871aaa0a5244d266c861f4a285 (patch) | |
tree | 1e0a65e32b823dc214474e61878e537e03bf7412 /security/openssl-beta/files | |
parent | e1b96c431c627112c996f7c95d27deeb43ebe1f6 (diff) | |
download | ports-bd8d8600c4cd2d871aaa0a5244d266c861f4a285.tar.gz ports-bd8d8600c4cd2d871aaa0a5244d266c861f4a285.zip |
Notes
Diffstat (limited to 'security/openssl-beta/files')
-rw-r--r-- | security/openssl-beta/files/patch-ab | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/security/openssl-beta/files/patch-ab b/security/openssl-beta/files/patch-ab index 242f51032255..b043ccd35bd2 100644 --- a/security/openssl-beta/files/patch-ab +++ b/security/openssl-beta/files/patch-ab @@ -1,11 +1,33 @@ ---- Makefile.org.orig Mon Mar 22 18:18:18 1999 -+++ Makefile.org Wed Mar 24 17:25:25 1999 -@@ -149,7 +149,7 @@ +--- Makefile.org.orig Sun Aug 8 12:29:52 1999 ++++ Makefile.org Sun Nov 7 18:33:37 1999 +@@ -164,7 +164,7 @@ ONEDIRS=out tmp - EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep + EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS WDIRS= windows -LIBS= libcrypto.a libssl.a +LIBS= libcrypto.a libssl.a libRSAglue.a GENERAL= Makefile BASENAME= openssl +@@ -187,6 +187,21 @@ + do \ + (cd $$i && echo "making all in $$i..." && \ + $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ ++ done; ++ ++freebsd-shared: ++ for i in ${SHLIBDIRS}; do \ ++ rm -f lib$$i.a lib$$i.so \ ++ lib$$i.so.${SHLIBVER}; \ ++ ${MAKE} CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='-fPIC ${CFLAG}' SDIRS='${SDIRS}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' DIRS=$$i clean all || exit 1; \ ++ ( set -x; ${CC} -shared -o lib$$i.so.${SHLIBVER} \ ++ -Wl,-S,-soname=lib$$i.so.${SHLIBVER} \ ++ -Wl,--whole-archive lib$$i.a ) || exit 1; \ ++ rm -f lib$$i.a; (cd $$i ; ${MAKE} clean) || exit 1 ;\ ++ done; ++ @set -x; \ ++ for i in ${SHLIBDIRS}; do \ ++ ln -s lib$$i.so.${SHLIBVER} lib$$i.so; \ + done; + + linux-shared: |