diff options
author | cbiere <cbiere@pkgsrc.org> | 2006-12-03 14:49:56 +0000 |
---|---|---|
committer | cbiere <cbiere@pkgsrc.org> | 2006-12-03 14:49:56 +0000 |
commit | 0f316ff9e7a852b33d0c3c4489fac79a399c8737 (patch) | |
tree | 3a656d70e17e7d2a53e0b0bb086b8bdbfb771f8e /security/openssl | |
parent | cbb15909e60e6af49112bbf2aab09d18d5ff4d40 (diff) | |
download | pkgsrc-0f316ff9e7a852b33d0c3c4489fac79a399c8737.tar.gz |
Check for GCC on IRIX instead of assuming the native compiler is used.
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 1adcc964e59..17e4f4f2ce6 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.117 2006/09/30 04:20:24 taca Exp $ +# $NetBSD: Makefile,v 1.118 2006/12/03 14:49:56 cbiere Exp $ OPENSSL_SNAPSHOT?= # empty OPENSSL_STABLE?= # empty @@ -71,7 +71,11 @@ CONFIGURE_ARGS+= solaris-${OPENSSL_MACHINE_ARCH}-cc CONFIGURE_ARGS+= no-asm . if ${ABI} == "64" CONFIGURE_SCRIPT= ./Configure +. if !empty(CC_VERSION:Mgcc*) +CONFIGURE_ARGS+= irix64-mips4-gcc +. else CONFIGURE_ARGS+= irix64-mips4-cc +. endif . endif .endif |