mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
4dcf59ae44
./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.
15 lines
429 B
C
15 lines
429 B
C
/* Define if the __attribute__(()) extension is present */
|
|
#undef HAVE_ATTRIBUTE
|
|
|
|
/* Define if the compiler understands the __FUNCTION__ keyword. */
|
|
#undef HAVE_FUNCTION
|
|
|
|
/* Define if we have parallel support */
|
|
#undef HAVE_PARALLEL
|
|
|
|
/* 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
|