diff options
author | wiz <wiz@pkgsrc.org> | 2014-02-25 09:16:49 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-02-25 09:16:49 +0000 |
commit | 91f055227d832fe72791dbe0c58a126519fc9c54 (patch) | |
tree | fc6a03f4a3f8321ab531cc2486247b73770c3809 /math | |
parent | 307868aaa807d9cbe53b48ba2bf40a9c79ed4dc5 (diff) | |
download | pkgsrc-91f055227d832fe72791dbe0c58a126519fc9c54.tar.gz |
Add --without-gmp to configure arguments when gmp is disabled.
Just to be on the safe side (I don't see a difference).
Diffstat (limited to 'math')
-rw-r--r-- | math/pari/options.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/pari/options.mk b/math/pari/options.mk index 9a5994fe385..249535364e3 100644 --- a/math/pari/options.mk +++ b/math/pari/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2014/01/05 10:57:11 richard Exp $ +# $NetBSD: options.mk,v 1.10 2014/02/25 09:16:49 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.pari PKG_SUPPORTED_OPTIONS= doc gmp x11 @@ -25,6 +25,7 @@ CONFIGURE_ARGS+= --with-gmp=${PREFIX} .include "../../devel/gmp/buildlink3.mk" .else PLIST.nogmp= yes +CONFIGURE_ARGS+= --without-gmp .endif .if !empty(PKG_OPTIONS:Mx11) |