dnl MPFR specific autoconf macrosdnl Copyright 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.dnl Contributed by the Arenaire and Cacao projects, INRIA.dnldnl This file is part of the GNU MPFR Library.dnldnl The GNU MPFR Library is free software; you can redistribute it and/or modifydnl it under the terms of the GNU Lesser General Public License as publisheddnl by the Free Software Foundation; either version 3 of the License, or (atdnl your option) any later version.dnldnl The GNU MPFR Library is distributed in the hope that it will be useful, butdnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITYdnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Publicdnl License for more details.dnldnl You should have received a copy of the GNU Lesser General Public Licensednl along with the GNU MPFR Library; see the file COPYING.LESSER. If not, seednl http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,dnl 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.dnl autoconf 2.60 is necessary because of the use of AC_PROG_SED.dnl The following line allows the autoconf wrapper (when installed)dnl to work as expected.dnl If you change the required version, please update README.dev too!AC_PREREQ(2.60)dnl ------------------------------------------------------------dnl You must put in MPFR_CONFIGS everything which configure MPFRdnl except:dnl -everything dealing with CC and CFLAGS in particular the ABIdnl but the IEEE-754 specific flags must be set here.dnl -GMP's linkage.dnl -Libtool stuff.dnl -Handling of special arguments of MPFR's configure.AC_DEFUN([MPFR_CONFIGS],[AC_REQUIRE([AC_OBJEXT])AC_REQUIRE([MPFR_CHECK_LIBM])AC_REQUIRE([AC_HEADER_TIME])AC_REQUIRE([AC_CANONICAL_HOST])AC_CHECK_HEADER([limits.h],, AC_MSG_ERROR([limits.h not found]))AC_CHECK_HEADER([float.h],, AC_MSG_ERROR([float.h not found]))AC_CHECK_HEADER([string.h],, AC_MSG_ERROR([string.h not found]))dnl Check for localesAC_CHECK_HEADERS([locale.h])dnl Check for wide characters (wchar_t and wint_t)AC_CHECK_HEADERS([wchar.h])dnl Check for stdargsAC_CHECK_HEADER([stdarg.h],[AC_DEFINE([HAVE_STDARG],1,[Define if stdarg])],[AC_CHECK_HEADER([varargs.h],,AC_MSG_ERROR([stdarg.h or varargs.h not found]))])dnl sys/fpu.h - MIPS specificAC_CHECK_HEADERS([sys/time.h sys/fpu.h])dnl SIZE_MAX macrogl_SIZE_MAXdnl va_copy macroAC_MSG_CHECKING([how to copy va_list])AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[va_list ap1, ap2;va_copy(ap1, ap2);]])], [AC_MSG_RESULT([va_copy])AC_DEFINE(HAVE_VA_COPY)], [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[va_list ap1, ap2;__va_copy(ap1, ap2);]])], [AC_DEFINE([HAVE___VA_COPY]) AC_MSG_RESULT([__va_copy])],[AC_MSG_RESULT([memcpy])])])dnl FIXME: The functions memmove, memset and strtol are really needed bydnl MPFR, but if they are implemented as macros, this is also OK (in ourdnl case). So, we do not return an error, but their tests are currentlydnl useless.dnl gettimeofday is not defined for MinGWAC_CHECK_FUNCS([memmove memset setlocale strtol gettimeofday])dnl Check for IEEE-754 switches on Alphacase $host inalpha*-*-*)saved_CFLAGS="$CFLAGS"AC_CACHE_CHECK([for IEEE-754 switches], mpfr_cv_ieee_switches, [if test -n "$GCC"; thenmpfr_cv_ieee_switches="-mfp-rounding-mode=d -mieee-with-inexact"elsempfr_cv_ieee_switches="-fprm d -ieee_with_inexact"fiCFLAGS="$CFLAGS $mpfr_cv_ieee_switches"AC_TRY_COMPILE(,,, mpfr_cv_ieee_switches="none")])if test "$mpfr_cv_ieee_switches" = "none"; thenCFLAGS="$saved_CFLAGS"elseCFLAGS="$saved_CFLAGS $mpfr_cv_ieee_switches"fiesacdnl check for long longAC_CHECK_TYPE([long long int],AC_DEFINE(HAVE_LONG_LONG, 1, [Define if compiler supports long long]),,)dnl intmax_t is C99AC_CHECK_TYPES([intmax_t])if test "$ac_cv_type_intmax_t" = yes; thenAC_CACHE_CHECK([for working INTMAX_MAX], mpfr_cv_have_intmax_max, [AC_TRY_COMPILE([#include <stdint.h>], [intmax_t x = INTMAX_MAX;],mpfr_cv_have_intmax_max=yes, mpfr_cv_have_intmax_max=no)])if test "$mpfr_cv_have_intmax_max" = "yes"; thenAC_DEFINE(MPFR_HAVE_INTMAX_MAX,1,[Define if you have a working INTMAX_MAX.])fifiAC_CHECK_TYPE( [union fpc_csr],AC_DEFINE(HAVE_FPC_CSR,1,[Define if union fpc_csr is available]), ,[#if HAVE_SYS_FPU_H# include <sys/fpu.h>#endif])dnl Check for fesetroundAC_CACHE_CHECK([for fesetround], mpfr_cv_have_fesetround, [saved_LIBS="$LIBS"LIBS="$LIBS $MPFR_LIBM"AC_TRY_LINK([#include <fenv.h>], [fesetround(FE_TONEAREST);],mpfr_cv_have_fesetround=yes, mpfr_cv_have_fesetround=no)LIBS="$saved_LIBS"])if test "$mpfr_cv_have_fesetround" = "yes"; thenAC_DEFINE(MPFR_HAVE_FESETROUND,1,[Define if you have the `fesetround' function via the <fenv.h> header file.])fidnl Check for gcc float-conversion bug; if need be, -ffloat-store is used todnl force the conversion to the destination type when a value is stored todnl a variable (see ISO C99 standard 5.1.2.3#13, 6.3.1.5#2, 6.3.1.8#2). Thisdnl is important concerning the exponent range. Note that this doesn't solvednl the double-rounding problem.if test -n "$GCC"; thenAC_CACHE_CHECK([for gcc float-conversion bug], mpfr_cv_gcc_floatconv_bug, [saved_LIBS="$LIBS"LIBS="$LIBS $MPFR_LIBM"AC_TRY_RUN([#include <float.h>#ifdef MPFR_HAVE_FESETROUND#include <fenv.h>#endifstatic double get_max (void);int main() {double x = 0.5;double y;int i;for (i = 1; i <= 11; i++)x *= x;if (x != 0)return 1;#ifdef MPFR_HAVE_FESETROUND/* Useful test for the G4 PowerPC */fesetround(FE_TOWARDZERO);x = y = get_max ();x *= 2.0;if (x != y)return 1;#endifreturn 0;}static double get_max (void) { static volatile double d = DBL_MAX; return d; }], [mpfr_cv_gcc_floatconv_bug="no"],[mpfr_cv_gcc_floatconv_bug="yes, use -ffloat-store"],[mpfr_cv_gcc_floatconv_bug="cannot test, use -ffloat-store"])LIBS="$saved_LIBS"])if test "$mpfr_cv_gcc_floatconv_bug" != "no"; thenCFLAGS="$CFLAGS -ffloat-store"fifidnl Check if denormalized numbers are supportedAC_CACHE_CHECK([for denormalized numbers], mpfr_cv_have_denorms, [AC_TRY_RUN([#include <math.h>#include <stdio.h>int main() {double x = 2.22507385850720138309e-308;fprintf (stderr, "%e\n", x / 2.0);return 2.0 * (x / 2.0) != x;}], mpfr_cv_have_denorms=yes, mpfr_cv_have_denorms=no, mpfr_cv_have_denorms=no)])if test "$mpfr_cv_have_denorms" = "yes"; thenAC_DEFINE(HAVE_DENORMS,1,[Define if denormalized floats work.])fidnl Check whether NAN != NAN (as required by the IEEE-754 standard,dnl but not by the ISO C standard). For instance, this is false withdnl MIPSpro 7.3.1.3m under IRIX64. By default, assume this is true.AC_CACHE_CHECK([if NAN == NAN], mpfr_cv_nanisnan, [AC_TRY_RUN([#include <stdio.h>#include <math.h>#ifndef NAN# define NAN (0.0/0.0)#endifint main() {double d;d = NAN;return d != d;}], [mpfr_cv_nanisnan="yes"],[mpfr_cv_nanisnan="no"],[mpfr_cv_nanisnan="cannot test, assume no"])])if test "$mpfr_cv_nanisnan" = "yes"; thenAC_DEFINE(MPFR_NANISNAN,1,[Define if NAN == NAN.])AC_MSG_WARN([The test NAN != NAN is false. The probable reason is that])AC_MSG_WARN([your compiler optimizes floating-point expressions in an])AC_MSG_WARN([unsafe way because some option, such as -ffast-math or])AC_MSG_WARN([-fast (depending on the compiler), has been used. You])AC_MSG_WARN([should NOT use such an option, otherwise MPFR functions])AC_MSG_WARN([such as mpfr_get_d and mpfr_set_d may return incorrect])AC_MSG_WARN([results on special FP numbers (e.g. NaN or signed zeros).])AC_MSG_WARN([If you did not use such an option, please send us a bug])AC_MSG_WARN([report so that we can try to find a workaround for your])AC_MSG_WARN([platform and/or document the behavior.])fidnl Check if the chars '0' to '9' are consecutive valuesAC_MSG_CHECKING([if charset has consecutive values])AC_RUN_IFELSE(AC_LANG_PROGRAM([[char *number = "0123456789";char *lower = "abcdefghijklmnopqrstuvwxyz";char *upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";]],[[int i;unsigned char *p;for (p = (unsigned char*) number, i = 0; i < 9; i++)if ( (*p)+1 != *(p+1) ) return 1;for (p = (unsigned char*) lower, i = 0; i < 25; i++)if ( (*p)+1 != *(p+1) ) return 1;for (p = (unsigned char*) upper, i = 0; i < 25; i++)if ( (*p)+1 != *(p+1) ) return 1;]]), [AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)AC_DEFINE(MPFR_NO_CONSECUTIVE_CHARSET,1,[Charset is not consecutive])], [AC_MSG_RESULT(can not test)])dnl Must be checked with the LIBMdnl but we don't want to add the LIBM to MPFR dependency.dnl Can't use AC_CHECK_FUNCS since the function may be in LIBM butdnl not exported in math.hsaved_LIBS="$LIBS"LIBS="$LIBS $MPFR_LIBM"dnl AC_CHECK_FUNCS([round trunc floor ceil nearbyint])AC_MSG_CHECKING(for math/round)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>int f (double (*func)(double)) { return 0;}]], [[double a = 17.42;a = f (round);return 0;]])], [AC_MSG_RESULT(yes)AC_DEFINE(HAVE_ROUND, 1,[Have ISO-C99 round function])],[AC_MSG_RESULT(no)])AC_MSG_CHECKING(for math/trunc)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>int f (double (*func)(double)) { return 0;}]], [[double a = 17.42;a = f(trunc);return 0;]])], [AC_MSG_RESULT(yes)AC_DEFINE(HAVE_TRUNC, 1,[Have ISO-C99 trunc function])],[AC_MSG_RESULT(no)])AC_MSG_CHECKING(for math/floor)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>int f (double (*func)(double)) { return 0;}]], [[double a = 17.42;a = f(floor);return 0;]])], [AC_MSG_RESULT(yes)AC_DEFINE(HAVE_FLOOR, 1,[Have ISO-C99 floor function])],[AC_MSG_RESULT(no)])AC_MSG_CHECKING(for math/ceil)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>int f (double (*func)(double)) { return 0;}]], [[double a = 17.42;a = f(ceil);return 0;]])], [AC_MSG_RESULT(yes)AC_DEFINE(HAVE_CEIL, 1,[Have ISO-C99 ceil function])],[AC_MSG_RESULT(no)])AC_MSG_CHECKING(for math/rint)AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>int f (double (*func)(double)) { return 0;}]], [[double a = 17.42;a = f(nearbyint);return 0;]])], [AC_MSG_RESULT(yes)AC_DEFINE(HAVE_NEARBYINT, 1,[Have ISO-C99 rint function])],[AC_MSG_RESULT(no)])LIBS="$saved_LIBS"dnl Now try to check the long double formatMPFR_C_LONG_DOUBLE_FORMATdnl Check if thread-local variables are supported.dnl At least two problems can occur in practice:dnl 1. The compilation fails, e.g. because the compiler doesn't knowdnl about the __thread keyword.dnl 2. The compilation succeeds, but the system doesn't support TLS ordnl there is some ld configuration problem. One of the effects candnl be that thread-local variables always evaluate to 0. So, it isdnl important to run the test below.if test "$enable_thread_safe" = yes; thenAC_CACHE_CHECK([for TLS support], mpfr_cv_working_tls, [saved_CPPFLAGS="$CPPFLAGS"# The -I$srcdir is necessary when objdir is different from srcdir.CPPFLAGS="$CPPFLAGS -I$srcdir"AC_RUN_IFELSE([#define MPFR_USE_THREAD_SAFE 1#include "mpfr-thread.h"MPFR_THREAD_ATTR int x = 17;int main() {return x != 17;}], [mpfr_cv_working_tls="yes"],[AC_MSG_RESULT(no)AC_MSG_ERROR([please configure with --disable-thread-safe])],[mpfr_cv_working_tls="cannot test, assume yes"])CPPFLAGS="$saved_CPPFLAGS"])fi])dnl MPFR_C_LONG_DOUBLE_FORMATdnl -------------------------dnl Determine the format of a long double.dnldnl The object file is grepped, so as to work when cross compiling. Adnl start and end sequence is included to avoid false matches, anddnl allowance is made for the desired data crossing an "od -b" linednl boundary. The test number is a small integer so it should appeardnl exactly, no rounding or truncation etc.dnldnl "od -b" is supported even by Unix V7, and the awk script used doesn'tdnl have functions or anything, so even an "old" awk should suffice.dnldnl The 10-byte IEEE extended format is generally padded to either 12 or 16dnl bytes for alignment purposes. The SVR4 i386 ABI is 12 bytes, or i386dnl gcc -m128bit-long-double selects 16 bytes. IA-64 is 16 bytes in LP64dnl mode, or 12 bytes in ILP32 mode. The first 10 bytes is the relevantdnl part in all cases (big and little endian).dnldnl Enhancements:dnldnl Could match more formats, but no need to worry until there's codednl wanting to use them.dnldnl Don't want to duplicate the double matching from GMP_C_DOUBLE_FORMAT,dnl perhaps we should merge with that macro, to match data formatsdnl irrespective of the C type in question. Or perhaps just let the codednl use DOUBLE macros when sizeof(double)==sizeof(long double).AC_DEFUN([MPFR_C_LONG_DOUBLE_FORMAT],[AC_REQUIRE([AC_PROG_CC])AC_REQUIRE([AC_PROG_AWK])AC_REQUIRE([AC_OBJEXT])AC_CHECK_TYPES([long double])AC_CACHE_CHECK([format of `long double' floating point],mpfr_cv_c_long_double_format,[mpfr_cv_c_long_double_format=unknownif test "$ac_cv_type_long_double" != yes; thenmpfr_cv_c_long_double_format="not available"elsecat >conftest.c <<\EOF[/* "before" is 16 bytes to ensure there's no padding between it and "x".We're not expecting any "long double" bigger than 16 bytes or withalignment requirements stricter than 16 bytes. */struct {char before[16];long double x;char after[8];} foo = {{ '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0','\001', '\043', '\105', '\147', '\211', '\253', '\315', '\357' },-123456789.0,{ '\376', '\334', '\272', '\230', '\166', '\124', '\062', '\020' }};]EOFmpfr_compile="$CC $CFLAGS $CPPFLAGS -c conftest.c >&AC_FD_CC 2>&1"if AC_TRY_EVAL(mpfr_compile); thencat >conftest.awk <<\EOF[BEGIN {found = 0}# got[] holds a sliding window of bytes read the input. got[0] is the most# recent byte read, and got[31] the oldest byte read, so when looking to# match some data the indices are "reversed".#{for (f = 2; f <= NF; f++){# new byte, shift others upfor (i = 31; i >= 0; i--)got[i+1] = got[i];got[0] = $f;# end sequenceif (got[7] != "376") continueif (got[6] != "334") continueif (got[5] != "272") continueif (got[4] != "230") continueif (got[3] != "166") continueif (got[2] != "124") continueif (got[1] != "062") continueif (got[0] != "020") continue# start sequence, with 8-byte bodyif (got[23] == "001" && \got[22] == "043" && \got[21] == "105" && \got[20] == "147" && \got[19] == "211" && \got[18] == "253" && \got[17] == "315" && \got[16] == "357"){saw = " (" got[15] \" " got[14] \" " got[13] \" " got[12] \" " got[11] \" " got[10] \" " got[9] \" " got[8] ")"if (got[15] == "301" && \got[14] == "235" && \got[13] == "157" && \got[12] == "064" && \got[11] == "124" && \got[10] == "000" && \got[9] == "000" && \got[8] == "000"){print "IEEE double, big endian"found = 1exit}if (got[15] == "000" && \got[14] == "000" && \got[13] == "000" && \got[12] == "124" && \got[11] == "064" && \got[10] == "157" && \got[9] == "235" && \got[8] == "301"){print "IEEE double, little endian"found = 1exit}}# start sequence, with 12-byte bodyif (got[27] == "001" && \got[26] == "043" && \got[25] == "105" && \got[24] == "147" && \got[23] == "211" && \got[22] == "253" && \got[21] == "315" && \got[20] == "357"){saw = " (" got[19] \" " got[18] \" " got[17] \" " got[16] \" " got[15] \" " got[14] \" " got[13] \" " got[12] \" " got[11] \" " got[10] \" " got[9] \" " got[8] ")"if (got[19] == "000" && \got[18] == "000" && \got[17] == "000" && \got[16] == "000" && \got[15] == "240" && \got[14] == "242" && \got[13] == "171" && \got[12] == "353" && \got[11] == "031" && \got[10] == "300"){print "IEEE extended, little endian"found = 1exit}}# start sequence, with 16-byte bodyif (got[31] == "001" && \got[30] == "043" && \got[29] == "105" && \got[28] == "147" && \got[27] == "211" && \got[26] == "253" && \got[25] == "315" && \got[24] == "357"){saw = " (" got[23] \" " got[22] \" " got[21] \" " got[20] \" " got[19] \" " got[18] \" " got[17] \" " got[16] \" " got[15] \" " got[14] \" " got[13] \" " got[12] \" " got[11] \" " got[10] \" " got[9] \" " got[8] ")"if (got[23] == "000" && \got[22] == "000" && \got[21] == "000" && \got[20] == "000" && \got[19] == "240" && \got[18] == "242" && \got[17] == "171" && \got[16] == "353" && \got[15] == "031" && \got[14] == "300"){print "IEEE extended, little endian"found = 1exit}if (got[23] == "300" && \got[22] == "031" && \got[21] == "326" && \got[20] == "363" && \got[19] == "105" && \got[18] == "100" && \got[17] == "000" && \got[16] == "000" && \got[15] == "000" && \got[14] == "000" && \got[13] == "000" && \got[12] == "000" && \got[11] == "000" && \got[10] == "000" && \got[9] == "000" && \got[8] == "000"){print "IEEE quad, big endian"found = 1exit}if (got[23] == "000" && \got[22] == "000" && \got[21] == "000" && \got[20] == "000" && \got[19] == "000" && \got[18] == "000" && \got[17] == "000" && \got[16] == "000" && \got[15] == "000" && \got[14] == "000" && \got[13] == "100" && \got[12] == "105" && \got[11] == "363" && \got[10] == "326" && \got[9] == "031" && \got[8] == "300"){print "IEEE quad, little endian"found = 1exit}if (got[23] == "301" && \got[22] == "235" && \got[21] == "157" && \got[20] == "064" && \got[19] == "124" && \got[18] == "000" && \got[17] == "000" && \got[16] == "000" && \got[15] == "000" && \got[14] == "000" && \got[13] == "000" && \got[12] == "000" && \got[11] == "000" && \got[10] == "000" && \got[9] == "000" && \got[8] == "000"){print "possibly double-double, big endian"found = 1exit}}}}END {if (! found)print "unknown", saw}]EOFmpfr_cv_c_long_double_format=`od -b conftest.$OBJEXT | $AWK -f conftest.awk`case $mpfr_cv_c_long_double_format inunknown*)echo "cannot match anything, conftest.$OBJEXT contains" >&AC_FD_CCod -b conftest.$OBJEXT >&AC_FD_CC;;esacelseAC_MSG_WARN([oops, cannot compile test program])fifirm -f conftest*])AH_VERBATIM([HAVE_LDOUBLE],[/* Define one of the following to 1 for the format of a `long double'.If your format is not among these choices, or you don't know what it is,then leave all undefined.IEEE_EXT is the 10-byte IEEE extended precision format.IEEE_QUAD is the 16-byte IEEE quadruple precision format.LITTLE or BIG is the endianness. */#undef HAVE_LDOUBLE_IEEE_EXT_LITTLE#undef HAVE_LDOUBLE_IEEE_QUAD_BIG])case $mpfr_cv_c_long_double_format in"IEEE extended, little endian")AC_DEFINE(HAVE_LDOUBLE_IEEE_EXT_LITTLE, 1);;"IEEE quad, big endian")AC_DEFINE(HAVE_LDOUBLE_IEEE_QUAD_BIG, 1);;"IEEE quad, little endian")AC_DEFINE(HAVE_LDOUBLE_IEEE_QUAD_LITTLE, 1);;"possibly double-double, big endian")AC_MSG_WARN([This format is known on GCC/PowerPC platforms,])AC_MSG_WARN([but due to GCC PR26374, we can't test further.])AC_MSG_WARN([You can safely ignore this warning, though.])# Since we are not sure, we do not want to define a macro.;;unknown* | "not available");;*)AC_MSG_WARN([oops, unrecognised float format: $mpfr_cv_c_long_double_format]);;esac])dnl MPFR_CHECK_LIBMdnl ---------------dnl Determine a math library -lm to use.AC_DEFUN([MPFR_CHECK_LIBM],[AC_REQUIRE([AC_CANONICAL_HOST])AC_SUBST(MPFR_LIBM,'')case $host in*-*-beos* | *-*-cygwin* | *-*-pw32*)# According to libtool AC CHECK LIBM, these systems don't have libm;;*-*-solaris*)# On Solaris the math functions new in C99 are in -lm9x.# FIXME: Do we need -lm9x as well as -lm, or just instead of?AC_CHECK_LIB(m9x, main, MPFR_LIBM="-lm9x")AC_CHECK_LIB(m, main, MPFR_LIBM="$MPFR_LIBM -lm");;*-ncr-sysv4.3*)# FIXME: What does -lmw mean? Libtool AC CHECK LIBM does it this way.AC_CHECK_LIB(mw, _mwvalidcheckl, MPFR_LIBM="-lmw")AC_CHECK_LIB(m, main, MPFR_LIBM="$MPFR_LIBM -lm");;*)AC_CHECK_LIB(m, main, MPFR_LIBM="-lm");;esac])dnl MPFR_LD_SEARCH_PATHS_FIRSTdnl --------------------------AC_DEFUN([MPFR_LD_SEARCH_PATHS_FIRST],[case "$LD $LDFLAGS" in*-Wl,-search_paths_first*) ;;*) AC_MSG_CHECKING([if the compiler understands -Wl,-search_paths_first])saved_LDFLAGS="$LDFLAGS"LDFLAGS="-Wl,-search_paths_first $LDFLAGS"AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],[AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)]LDFLAGS="$saved_LDFLAGS");;esac])dnl GMP_C_ATTRIBUTE_MODEdnl --------------------dnl Introduced in gcc 2.2, but perhaps not in all Apple derived versions.dnl Needed for mpfr-longlong.h; this is currently necessary for s390.dnldnl TODO: Replace this with a cleaner type size detection, as thisdnl solution only works with gcc and assumes CHAR_BIT == 8. Probably usednl <stdint.h>, and <http://gcc.gnu.org/viewcvs/trunk/config/stdint.m4>dnl as a fallback.AC_DEFUN([GMP_C_ATTRIBUTE_MODE],[AC_CACHE_CHECK([whether gcc __attribute__ ((mode (XX))) works],gmp_cv_c_attribute_mode,[AC_TRY_COMPILE([typedef int SItype __attribute__ ((mode (SI)));], ,gmp_cv_c_attribute_mode=yes, gmp_cv_c_attribute_mode=no)])if test $gmp_cv_c_attribute_mode = yes; thenAC_DEFINE(HAVE_ATTRIBUTE_MODE, 1,[Define to 1 if the compiler accepts gcc style __attribute__ ((mode (XX)))])fi])dnl MPFR_FUNC_GMP_PRINTF_SPECdnl ------------------------------------dnl MPFR_FUNC_GMP_PRINTF_SPEC(spec, type, [includes], [if-true], [if-false])dnl Check if gmp_sprintf supports the conversion specification 'spec'dnl with type 'type'.dnl Expand 'if-true' if printf supports 'spec', 'if-false' otherwise.AC_DEFUN([MPFR_FUNC_GMP_PRINTF_SPEC],[AC_MSG_CHECKING(if gmp_printf supports "%$1")AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>$3#include <gmp.h>]], [[char s[256];$2 a = 17;if (gmp_sprintf (s, "(%0.0$1)(%d)", a, 42) == -1) return 1;return (strcmp (s, "(17)(42)") != 0);]])],[AC_MSG_RESULT(yes)$4],[AC_MSG_RESULT(no)$5])])dnl MPFR_CHECK_PRINTF_SPECdnl ----------------------dnl Check if gmp_printf supports some optional length modifiers.dnl Defined symbols are negative to shorten the gcc command line.AC_DEFUN([MPFR_CHECK_PRINTF_SPEC], [AC_REQUIRE([MPFR_CONFIGS])dnlif test "$ac_cv_type_intmax_t" = yes; thenMPFR_FUNC_GMP_PRINTF_SPEC([jd], [intmax_t], [#ifdef HAVE_STDINT_H# include <stdint.h>#endif#ifdef HAVE_INTTYPES_H# include <inttypes.h>#endif],,[AC_DEFINE([NPRINTF_J], 1, [gmp_printf cannot read intmax_t])])fiMPFR_FUNC_GMP_PRINTF_SPEC([hhd], [char], [#include <gmp.h>],,[AC_DEFINE([NPRINTF_HH], 1, [gmp_printf cannot use 'hh' length modifier])])MPFR_FUNC_GMP_PRINTF_SPEC([lld], [long long int], [#include <gmp.h>],,[AC_DEFINE([NPRINTF_LL], 1, [gmp_printf cannot read long long int])])MPFR_FUNC_GMP_PRINTF_SPEC([Lf], [long double], [#include <gmp.h>],,[AC_DEFINE([NPRINTF_L], 1, [gmp_printf cannot read long double])])MPFR_FUNC_GMP_PRINTF_SPEC([td], [ptrdiff_t], [#if defined (__cplusplus)#include <cstddef>#else#include <stddef.h>#endif#include "gmp.h"],,[AC_DEFINE([NPRINTF_T], 1, [gmp_printf cannot read ptrdiff_t])])])