diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 21:39:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 21:39:05 (GMT) |
commit | 8f4b37accf49681ff657bcd4496f3bd023895141 (patch) | |
tree | 05dd927e8ae8a64357868289d374330966b6d358 /configure | |
parent | 55f8e19fc7ba1b59f5b435a1e1949457907eff40 (diff) | |
download | hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.zip hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.tar.gz hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.tar.bz2 |
[svn-r10700] Purpose:
Bug fix
Description:
Kent reminded me that switching the logic wasn't enough, we really needed
to add the definition to the configure script.
Solution:
Do that.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -50119,6 +50119,28 @@ else echo "${ECHO_T}no" >&6 fi +echo "$as_me:$LINENO: checking if compiling long long to floating-point typecasts work" >&5 +echo $ECHO_N "checking if compiling long long to floating-point typecasts work... $ECHO_C" >&6 +if test "${hdf5_cv_llong_to_fp_cast_works+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + hdf5_cv_llong_to_fp_cast_works=yes +fi + + +if test ${hdf5_cv_llong_to_fp_cast_works} = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define LLONG_TO_FP_CAST_WORKS 1 +_ACEOF + + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + echo "$as_me:$LINENO: checking if converting unsigned long long to long double with precision work" >&5 echo $ECHO_N "checking if converting unsigned long long to long double with precision work... $ECHO_C" >&6 if test "${hdf5_cv_ullong_to_ldouble_precision_works+set}" = set; then |