summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-01-07 11:37:16 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-01-07 11:37:16 (GMT)
commit2578cee6018066ecb8a82a68e06740e3806a315f (patch)
tree7286be9afdfea178d8218ed2a4085f6ea7fb6738 /configure.in
parent0825a0bcd5b9bb5f74d415782d11b28f5262a1d5 (diff)
downloadhdf5-2578cee6018066ecb8a82a68e06740e3806a315f.zip
hdf5-2578cee6018066ecb8a82a68e06740e3806a315f.tar.gz
hdf5-2578cee6018066ecb8a82a68e06740e3806a315f.tar.bz2
[svn-r1008] Changes since 19981217
---------------------- ./MANIFEST Removed some ddl files from tools/testfiles that are no longer part of CVS. Added new enum.c test. ./configure [REGENERATED] ./configure.in Changed printf long long format detection to favor `L' over `ll'.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 29141d4..ef9dac9 100644
--- a/configure.in
+++ b/configure.in
@@ -396,7 +396,7 @@ dnl default in case none of the others work.
dnl
AC_MSG_CHECKING(how to print long long)
AC_CACHE_VAL(hdf5_cv_printf_ll,
- for hdf5_cv_printf_ll in ll q l; do
+ for hdf5_cv_printf_ll in l L q ll unknown; do
AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
@@ -407,10 +407,9 @@ AC_CACHE_VAL(hdf5_cv_printf_ll,
exit (strcmp(s,"1099511627776"));}],
break)
done)
-AC_MSG_RESULT($hdf5_cv_printf_ll)
+AC_MSG_RESULT(%${hdf5_cv_printf_ll}d and %${hdf5_cv_printf_ll}u)
AC_DEFINE_UNQUOTED(PRINTF_LL_WIDTH,"$hdf5_cv_printf_ll")
-
dnl ----------------------------------------------------------------------
dnl Turn on debugging by setting compiler flags
dnl