diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-09-01 20:38:18 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-09-01 20:38:18 (GMT) |
commit | 30c61d0f254d8201e9f84ee45f15fb83ee5f4495 (patch) | |
tree | a408aa22357a2cf2a2f57d941ee9a4431f073c02 /configure | |
parent | c7808fa57eb9923b15d06e170dda140e72139ab8 (diff) | |
download | hdf5-30c61d0f254d8201e9f84ee45f15fb83ee5f4495.zip hdf5-30c61d0f254d8201e9f84ee45f15fb83ee5f4495.tar.gz hdf5-30c61d0f254d8201e9f84ee45f15fb83ee5f4495.tar.bz2 |
[svn-r11335] Purpose:
Bug fix
Description:
configure used 'uname -o' to detect Cygwin. This command is fine on
Cygwin, but causes errors on some other platforms (sol).
Fixed this.
Solution:
Used 'uname' with no -o option to identify Cygwin.
Platforms tested:
mir, cygwin (on finrod)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -23213,7 +23213,8 @@ fi done -if test "`uname -o`" = "Cygwin"; then +case "`uname`" in + CYGWIN*) for ac_header in io.h sys/timeb.h @@ -23365,7 +23366,8 @@ fi done -else + ;; + *) @@ -23518,7 +23520,9 @@ fi done -fi + ;; +esac + case "$host" in alpha*-dec*-osf*) |