diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-06-01 18:34:32 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-06-01 18:34:32 (GMT) |
commit | b1f5c03c79dffa6510a3322e4c63ee77ad3be5d4 (patch) | |
tree | c8d56c6a1fffb5c3db4698438155897e2d520976 /configure | |
parent | 30d130b7b5aaf8422e29005f566cd2caef5558f6 (diff) | |
download | hdf5-b1f5c03c79dffa6510a3322e4c63ee77ad3be5d4.zip hdf5-b1f5c03c79dffa6510a3322e4c63ee77ad3be5d4.tar.gz hdf5-b1f5c03c79dffa6510a3322e4c63ee77ad3be5d4.tar.bz2 |
[svn-r12389] Purpose: Bug fix
Description: There was some logical confusion about the value of the macro
H5_HW_FP_TO_LLONG_NOT_WORKS. It's supposed to be true for Windows, but false
for Unix machines.
Solution: Corrected.
Platforms tested: fuss(Linux) and amazon(MacOS 10.4) - simple change.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -50865,7 +50865,7 @@ echo $ECHO_N "checking if converting floating-point values to long long is not w if test "${hdf5_cv_convert_float_llong_not_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - hdf5_cv_convert_float_llong_not_works=yes + hdf5_cv_convert_float_llong_not_works=no fi @@ -50875,11 +50875,11 @@ cat >>confdefs.h <<\_ACEOF #define HW_FP_TO_LLONG_NOT_WORKS 1 _ACEOF - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 + echo "$as_me:$LINENO: result: true" >&5 +echo "${ECHO_T}true" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + echo "$as_me:$LINENO: result: false" >&5 +echo "${ECHO_T}false" >&6 fi echo "$as_me:$LINENO: checking if converting from long double to integers is accurate" >&5 |