diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-05-15 21:25:52 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-05-15 21:25:52 (GMT) |
commit | 70cdaa12b2bceadd6a6f6d7b66eaad626e8523d6 (patch) | |
tree | f97f0ecc4e035a9e786c5307d7359dbc9aeb83df /configure | |
parent | 484b4c47c3e0b5905c61eb536626ab5b098885c7 (diff) | |
download | hdf5-70cdaa12b2bceadd6a6f6d7b66eaad626e8523d6.zip hdf5-70cdaa12b2bceadd6a6f6d7b66eaad626e8523d6.tar.gz hdf5-70cdaa12b2bceadd6a6f6d7b66eaad626e8523d6.tar.bz2 |
[svn-r15013] Purpose: Configure Macro Modification
Description: The macro H5_HAVE_WINDOW_PATH is now defined to 1 only when
MinGW is in use. This is needed to fix the "links" test, and the
external link feature in the library.
Tested: kagiso
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 26 |
1 files changed, 11 insertions, 15 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 15006 2008-05-15 15:48:48Z mcgreevy . +# From configure.in Id: configure.in 15011 2008-05-15 21:02:34Z mcgreevy . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for HDF5 1.8.0-snap7. # @@ -49201,26 +49201,22 @@ fi { echo "$as_me:$LINENO: checking if the machine has window style path name" >&5 echo $ECHO_N "checking if the machine has window style path name... $ECHO_C" >&6; } -if test "${hdf5_have_window_path+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - hdf5_have_window_path=no -fi - -if test ${hdf5_have_window_path} = "yes"; then +case "`uname`" in + MINGW*) cat >>confdefs.h <<\_ACEOF #define HAVE_WINDOW_PATH 1 _ACEOF - { echo "$as_me:$LINENO: result: true" >&5 -echo "${ECHO_T}true" >&6; } -else - { echo "$as_me:$LINENO: result: false" >&5 -echo "${ECHO_T}false" >&6; } -fi - + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + ;; + *) + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + ;; +esac { echo "$as_me:$LINENO: checking if converting from long double to integers is accurate" >&5 echo $ECHO_N "checking if converting from long double to integers is accurate... $ECHO_C" >&6; } |