diff options
author | obache <obache> | 2010-08-01 05:24:00 +0000 |
---|---|---|
committer | obache <obache> | 2010-08-01 05:24:00 +0000 |
commit | 4b7f709bea31ea1f523dcc6d9ced682feec25d7a (patch) | |
tree | 8da41b1dd02f0d96323d7e02d726ac4cbeccae32 /security/openssl | |
parent | fe5b9f25a460e57eabcb25272bdd4b08738123c3 (diff) | |
download | pkgsrc-4b7f709bea31ea1f523dcc6d9ced682feec25d7a.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 |