summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2009-01-19 12:50:08 +0000
committerthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2009-01-19 12:50:08 +0000
commit9d198812dcf32b92594f27244d72d8ec5f2e8df7 (patch)
treeef71228f37ce115f3cb595202adb317208e6e1f5 /acinclude.m4
parentf77f16b313adf487eeb68503782135a2b5724f99 (diff)
downloadmpfr-9d198812dcf32b92594f27244d72d8ec5f2e8df7.tar.gz
mpfr.texi: Explicit list of type supported by mpfr_printf functions.
acinclude.m4: Remove detection of type modifier 'q'. vasprintf.c: Remove support of type modifier 'q'. tests/tfprintf.c tests/tprintf.c: Remove tests with type modifier 'q'. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5835 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m411
1 files changed, 1 insertions, 10 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 8cd34e6e5..47cba75dd 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -119,8 +119,7 @@ AC_CHECK_TYPE([long long int],
AC_DEFINE(HAVE_LONG_LONG, 1, [Define if compiler supports long long]),,)
dnl intmax_t is C99
-dnl quad_t is BSD specific
-AC_CHECK_TYPES([intmax_t, quad_t])
+AC_CHECK_TYPES([intmax_t])
AC_CHECK_TYPE( [union fpc_csr],
AC_DEFINE(HAVE_FPC_CSR,1,[Define if union fpc_csr is available]), ,
@@ -713,14 +712,6 @@ if test "$ac_cv_type_intmax_t" == yes; then
[AC_DEFINE([NPRINTF_J], 1, [gmp_printf cannot read intmax_t])])
fi
-if test "$ac_cv_type_quad_t" == yes; then
- MPFR_FUNC_PRINTF_SPEC([%qd], [quad_t], [
-#include <sys/types.h>
-#include <gmp.h>
- ], [gmp_],,
- [AC_DEFINE([NPRINTF_Q], 1, [gmp_printf cannot read quad_t])])
-fi
-
MPFR_FUNC_PRINTF_SPEC([%.0Lf], [long double], [
#include <gmp.h>
], [gmp_],,