diff options
author | obache <obache@pkgsrc.org> | 2010-08-01 05:24:00 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-08-01 05:24:00 +0000 |
commit | 2aef14aee24c396d1d59f2f6c01a3a9ee067444f (patch) | |
tree | 8da41b1dd02f0d96323d7e02d726ac4cbeccae32 /security/openssl | |
parent | 52a0577c1d616d852e83ffa43d3153ba63d3ee82 (diff) | |
download | pkgsrc-2aef14aee24c396d1d59f2f6c01a3a9ee067444f.tar.gz |
ABI is not defined on old Darwin.
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index b9cf392023b..61d18feea92 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.149 2010/06/02 13:30:11 taca Exp $ +# $NetBSD: Makefile,v 1.150 2010/08/01 05:24:00 obache Exp $ OPENSSL_SNAPSHOT?= # empty OPENSSL_STABLE?= # empty @@ -86,7 +86,7 @@ CONFIGURE_ARGS+= tru64-alpha-cc . endif .elif ${OPSYS} == "Darwin" CONFIGURE_SCRIPT= ./Configure -. if ${ABI} == "64" +. if defined(ABI) && ${ABI} == "64" CONFIGURE_ARGS+= darwin64-${MACHINE_ARCH}-cc . else CONFIGURE_ARGS+= darwin-${MACHINE_ARCH}-cc |