diff options
author | grant <grant@pkgsrc.org> | 2004-12-18 15:43:19 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-18 15:43:19 +0000 |
commit | fafc14b844356773423398225f6727d68ff0e8ad (patch) | |
tree | 331af571440e6b18db0222d2c706dd94b09b39c7 /devel/gmp/Makefile | |
parent | be6bd3980f4dfa81b8175b11dcfd5635eaa6bbb9 (diff) | |
download | pkgsrc-fafc14b844356773423398225f6727d68ff0e8ad.tar.gz |
set ABI=o32 on irix5, as gmp only supports o32 on irix5.
fixes PR pkg/28072 from Georg Schwarz.
Diffstat (limited to 'devel/gmp/Makefile')
-rw-r--r-- | devel/gmp/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/gmp/Makefile b/devel/gmp/Makefile index 2e95ca70178..0b74487c74a 100644 --- a/devel/gmp/Makefile +++ b/devel/gmp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2004/11/22 13:58:28 adam Exp $ +# $NetBSD: Makefile,v 1.32 2004/12/18 15:43:19 grant Exp $ DISTNAME= gmp-4.1.4 CATEGORIES= devel math @@ -22,6 +22,11 @@ INFO_FILES= gmp.info TEST_TARGET= check +.include "../../mk/bsd.prefs.mk" +.if !empty(LOWER_OPSYS:Mirix5) && !empty(ABI) +ABI= o32 +.endif + .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" # The configure script thinks gcc 2.95 for ARM is too buggy to use. GCC_REQD+= 3.0 |