diff options
author | alfred <alfred@FreeBSD.org> | 2001-02-10 09:30:47 +0800 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-02-10 09:30:47 +0800 |
commit | 9e63263bf9aebc5239140869678deda69103a7d8 (patch) | |
tree | 2a6098a31b18cf2e610bf7a96265bcd0a4b9837c /security/openssl-beta/Makefile | |
parent | 96d7a7fd89d4a3eb43d8f378d8c9782a11d2562f (diff) | |
download | freebsd-ports-gnome-9e63263bf9aebc5239140869678deda69103a7d8.tar.gz freebsd-ports-gnome-9e63263bf9aebc5239140869678deda69103a7d8.tar.zst freebsd-ports-gnome-9e63263bf9aebc5239140869678deda69103a7d8.zip |
give aout machines shared libraries as well
Diffstat (limited to 'security/openssl-beta/Makefile')
-rw-r--r-- | security/openssl-beta/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/openssl-beta/Makefile b/security/openssl-beta/Makefile index 483fa23bc12b..6cac3da487e8 100644 --- a/security/openssl-beta/Makefile +++ b/security/openssl-beta/Makefile @@ -20,8 +20,11 @@ MAINTAINER= dirk@FreeBSD.org .if ${OSVERSION} >= 400014 FORBIDDEN= "OpenSSL is already in the base system" .endif + .if ${PORTOBJFORMAT} == "aout" -NOSHARED= yes +MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=-Bforcearchive +.else +MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=--whole-archive .endif USE_PERL5= yes |