diff options
author | ale <ale@FreeBSD.org> | 2013-02-13 23:49:33 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2013-02-13 23:49:33 +0800 |
commit | 75ea635e0036f6af3d7a15c92b09dcf8729a3492 (patch) | |
tree | 5ded997297c34a0cc497895beda292b8f53c9d86 /math/gmp | |
parent | b1744907cf07898286195d1116bb19fe4d0822ae (diff) | |
download | freebsd-ports-gnome-75ea635e0036f6af3d7a15c92b09dcf8729a3492.tar.gz freebsd-ports-gnome-75ea635e0036f6af3d7a15c92b09dcf8729a3492.tar.zst freebsd-ports-gnome-75ea635e0036f6af3d7a15c92b09dcf8729a3492.zip |
Fix build on ARM (temporary fix).
Diffstat (limited to 'math/gmp')
-rw-r--r-- | math/gmp/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/math/gmp/Makefile b/math/gmp/Makefile index 0ae35a9a845c..330df1bcd435 100644 --- a/math/gmp/Makefile +++ b/math/gmp/Makefile @@ -41,6 +41,11 @@ CONFIGURE_ENV+= ABI="64" CONFIGURE_ENV+= ABI="32" .endif +# temporary build hack for ARM +.if ${ARCH} == "arm" +CONFIGURE_ARGS+=--enable-assembly=no +.endif + post-extract: @${RM} -f ${WRKSRC}/doc/gmp.info* |