diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-08-13 20:29:09 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-08-13 20:29:09 (GMT) |
commit | b6f7e6e79c7f8121559165195e6ad6b9872dff3f (patch) | |
tree | 526124be78565723ba12457b23227e640f0225b6 /bin | |
parent | af92c5f1e02e8f2df8dafd257251c1c967b3be34 (diff) | |
download | hdf5-b6f7e6e79c7f8121559165195e6ad6b9872dff3f.zip hdf5-b6f7e6e79c7f8121559165195e6ad6b9872dff3f.tar.gz hdf5-b6f7e6e79c7f8121559165195e6ad6b9872dff3f.tar.bz2 |
[svn-r24007] Update configure to support 64-bit cygwin
Tested: cygwin
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/config.guess | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/config.guess b/bin/config.guess index f32079a..03fe473 100755 --- a/bin/config.guess +++ b/bin/config.guess @@ -778,9 +778,9 @@ EOF echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; + i*:CYGWIN*:* | x*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; @@ -815,7 +815,7 @@ EOF i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; - amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + amd64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) |