summaryrefslogtreecommitdiffstats
path: root/acconfig.h
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-04-24 21:26:32 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-04-24 21:26:32 (GMT)
commit4dcf59ae4461eec74a180d77783d9064d2aa3a58 (patch)
tree3c720b6ce64b7e81e6e28f773755fe0fb97cfde9 /acconfig.h
parent98b5a7f9c5a881c849cd536579bb121cf185e2db (diff)
downloadhdf5-4dcf59ae4461eec74a180d77783d9064d2aa3a58.zip
hdf5-4dcf59ae4461eec74a180d77783d9064d2aa3a58.tar.gz
hdf5-4dcf59ae4461eec74a180d77783d9064d2aa3a58.tar.bz2
[svn-r376] ./acconfig.h
./configure.in ./config/BlankForm ./src/H5.c Configure tries to figure out how to print `long long' types and then defines PRINTF_LL_WIDTH to be `ll' or `q' or something. It does this by running little sprintf() programs with various formats until it gets one that works. If this causes problems when cross compiling (like with parallel machines) then you may add the following to the appropriate config file: hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'} or hdf5_cv_printf_ll=${hdf5_cv_printf_ll='q'} or hdf5_cv_printf_ll=${hdf5_cv_printf_ll='l'} ./config/intel-osf1 ./config/irix5.3 Updated these config files to match the others. This allows the `--enable-production' configure flag to work properly.
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index 4f5b402..ee300ea 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -9,3 +9,6 @@
/* Define if it's safe to use `long long' for hsize_t and hssize_t */
#undef HAVE_LARGE_HSIZET
+
+/* The width parameter for printf formats for type `long long', us. `ll' */
+#undef PRINTF_LL_WIDTH