diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-04-24 21:26:32 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-04-24 21:26:32 (GMT) |
commit | 4dcf59ae4461eec74a180d77783d9064d2aa3a58 (patch) | |
tree | 3c720b6ce64b7e81e6e28f773755fe0fb97cfde9 /config/BlankForm | |
parent | 98b5a7f9c5a881c849cd536579bb121cf185e2db (diff) | |
download | hdf5-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 'config/BlankForm')
-rw-r--r-- | config/BlankForm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/BlankForm b/config/BlankForm index a844dea..5ff807b 100644 --- a/config/BlankForm +++ b/config/BlankForm @@ -41,3 +41,8 @@ PROFILE_CPPFLAGS= # Set this to `yes' or `no' depending on whether the target is big # endian or little endian. #ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'} + +# Set this to the width required by printf() to print type `long +# long'. For instance, if the format would be `%lld' then set it to +# `ll' or if the format would be `%qd' set it to `q'. +#hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'} |