diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2013-12-14 04:47:22 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2013-12-14 04:47:22 +0000 |
commit | 55c37aca95bb370899b0e6a10fac1320be198a72 (patch) | |
tree | e10da4a1ced387af3221b2b0bf61293fae75f322 /math/gmp | |
parent | 0a4bc243ef4741e0e9b8246a9cf5d47586101f73 (diff) |
Notes
Diffstat (limited to 'math/gmp')
-rw-r--r-- | math/gmp/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/gmp/Makefile b/math/gmp/Makefile index 941feb922abf..5fc5f6190b4c 100644 --- a/math/gmp/Makefile +++ b/math/gmp/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= gmp MAINTAINER= ale@FreeBSD.org -COMMENT= A free library for arbitrary precision arithmetic +COMMENT= Free library for arbitrary precision arithmetic LICENSE= LGPL3 @@ -34,7 +34,11 @@ INFO= gmp .if ! ${PORT_OPTIONS:MCPU_OPTS} CONFIGURE_ARGS+=--build=${ARCH}-portbld-freebsd${OSREL} .elif ${ARCH:S/64//} != ${ARCH} +.if ${ARCH} == powerpc64 +CONFIGURE_ENV+= ABI="mode64" +.else CONFIGURE_ENV+= ABI="64" +.endif .else CONFIGURE_ENV+= ABI="32" .endif |