diff options
author | ahoka <ahoka> | 2009-10-25 12:49:04 +0000 |
---|---|---|
committer | ahoka <ahoka> | 2009-10-25 12:49:04 +0000 |
commit | 94dca646ff2ab1c0881db0299fc79d0bf50d47d4 (patch) | |
tree | 28d83d775c6bcd8d2dcb464a4f354fb9776fb843 /lang/see/patches | |
parent | e9d25d87a28b9fab6ba3459382e56bdc925e11c8 (diff) | |
download | pkgsrc-94dca646ff2ab1c0881db0299fc79d0bf50d47d4.tar.gz |
It seems that <tnn> had an actual fix for the configure bug
in his pockets, thanks!
Diffstat (limited to 'lang/see/patches')
-rw-r--r-- | lang/see/patches/patch-ab | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/lang/see/patches/patch-ab b/lang/see/patches/patch-ab index d6f7ea71fe7..728ed39baf7 100644 --- a/lang/see/patches/patch-ab +++ b/lang/see/patches/patch-ab @@ -1,8 +1,25 @@ -$NetBSD: patch-ab,v 1.1 2009/06/03 06:03:50 hasso Exp $ +$NetBSD: patch-ab,v 1.2 2009/10/25 12:49:04 ahoka Exp $ ---- configure.ac.orig 2009-06-03 05:59:44 +0300 -+++ configure.ac 2009-06-03 06:03:54 +0300 -@@ -333,6 +333,10 @@ AC_CHECK_FUNCS([isnan _isnan],[have_isna +--- configure.ac.orig 2008-02-10 11:31:33.000000000 +0100 ++++ configure.ac +@@ -206,11 +206,12 @@ SEE_ARG_ENABLE(longjmperror,[yes], + [Define if you want SEE to catch longjmp corruption]) + ]) + +-SEE_ARG_ENABLE(native-dtoa,[auto], ++SEE_ARG_ENABLE(native-dtoa,[no], + [dtoa from libc], +- [enable_native_dtoa=yes +- AC_CHECK_FUNCS([strtod dtoa freedtoa],,[enable_native_dtoa=no]) +-]) ++ [], ++ [enable_native_dtoa=yes], ++ [enable_native_dtoa=no] ++) + AM_CONDITIONAL(NATIVE_DTOA, test x"$enable_native_dtoa" = x"yes") + + +@@ -333,6 +334,10 @@ AC_CHECK_FUNCS([isnan _isnan],[have_isna AC_CHECK_FUNCS([finite _finite isfinite],[have_finite=yes]) AC_CHECK_FUNCS([copysign _copysign],[have_copysign=yes]) |