diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-06-26 11:41:01 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-06-26 11:41:01 +0800 |
commit | 883dc06e0bfc07e9fddd0f3cae07665078da9a1d (patch) | |
tree | b0fc35205ae22825a6e5b77f22b46e9cb59f19af /security | |
parent | c0925ff512b8d721cf2dac9c88c22d4047cb6831 (diff) | |
download | freebsd-ports-gnome-883dc06e0bfc07e9fddd0f3cae07665078da9a1d.tar.gz freebsd-ports-gnome-883dc06e0bfc07e9fddd0f3cae07665078da9a1d.tar.zst freebsd-ports-gnome-883dc06e0bfc07e9fddd0f3cae07665078da9a1d.zip |
- fix options ZLIP and ASM
Reported by: jkim
Diffstat (limited to 'security')
-rw-r--r-- | security/openssl/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index d1c2fb0bc878..414d23a41e8c 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -8,7 +8,7 @@ PORTNAME= openssl PORTVERSION= 1.0.1 DISTVERSIONSUFFIX= c -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/%SUBDIR%/ \ ftp://ftp.openssl.org/%SUBDIR%/ \ @@ -1061,9 +1061,9 @@ EXTRACONFIGURE+= no-sse2 .endif .if ${PORT_OPTIONS:MASM} -EXTRACONFIGURE+= no-asm -.else EXTRACONFIGURE+= enable-asm +.else +EXTRACONFIGURE+= no-asm .endif .if ${PORT_OPTIONS:MSHARED} @@ -1077,9 +1077,9 @@ PLIST_SUB+= SHARED="@comment " .endif .if ${PORT_OPTIONS:MZLIB} -EXTRACONFIGURE+= no-zlib no-zlib-dynamic -.else EXTRACONFIGURE+= zlib zlib-dynamic +.else +EXTRACONFIGURE+= no-zlib no-zlib-dynamic .endif .if ${PORT_OPTIONS:MSCTP} |