diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-04-20 06:01:43 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-04-20 06:01:43 +0300 |
commit | 8dcbc1f40d88aa189e7659120ede5436b56a970d (patch) | |
tree | 5300da6506ce459975e49290bd67e9afa3262479 /configure | |
parent | 7c3d14eb1d103061939fdcad66bf2b27d78bc5b5 (diff) | |
parent | 780c96b8a827fd1780e611cd41d59d80033eff46 (diff) | |
download | egawk-8dcbc1f40d88aa189e7659120ede5436b56a970d.tar.gz egawk-8dcbc1f40d88aa189e7659120ede5436b56a970d.tar.bz2 egawk-8dcbc1f40d88aa189e7659120ede5436b56a970d.zip |
Merge branch 'master' into feature/api-mpfr
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 26 |
1 files changed, 21 insertions, 5 deletions
@@ -767,6 +767,7 @@ with_whiny_user_strftime enable_lint enable_severe_portability_problems enable_builtin_intdiv0 +enable_mpfr enable_dependency_tracking enable_largefile enable_nls @@ -1410,11 +1411,12 @@ Optional Features: --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") - --disable-lint Disable gawk lint checking + --disable-lint do not compile in gawk lint checking --enable-severe-portability-problems - Enable really nasty portability problems + allow really nasty portability problems --enable-builtin-intdiv0 - Enable built-in intdiv0 function + enable built-in intdiv0 function + --disable-mpfr do not check for MPFR --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking @@ -1428,7 +1430,7 @@ Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-whiny-user-strftime - Force use of included version of strftime for + force use of included version of strftime for deficient systems --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib @@ -3262,6 +3264,17 @@ $as_echo "#define SUPPLY_INTDIV 1" >>confdefs.h fi +SKIP_MPFR=no +# Check whether --enable-mpfr was given. +if test "${enable_mpfr+set}" = set; then : + enableval=$enable_mpfr; if test "$enableval" = no + then + SKIP_MPFR=yes + fi + +fi + + # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 @@ -10540,7 +10553,8 @@ case `uname -m` in *'Power Macintosh'*) : ;; *) - + case $SKIP_MPFR in + no) # Check whether --with-mpfr was given. if test "${with_mpfr+set}" = set; then : @@ -10614,6 +10628,8 @@ $as_echo "#define HAVE_MPFR 1" >>confdefs.h unset _found_mpfr fi + ;; + esac ;; esac |