diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-01-09 18:47:28 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-01-09 18:47:28 (GMT) |
commit | 39e26205e1d5a2e11118190215eb078bc3bf1be0 (patch) | |
tree | 2988ff1c6ff119f496658920795794d8b644b06f /configure.ac | |
parent | b4f238fbd51410a1e78436b3bb3312b40acec7ce (diff) | |
download | hdf5-39e26205e1d5a2e11118190215eb078bc3bf1be0.zip hdf5-39e26205e1d5a2e11118190215eb078bc3bf1be0.tar.gz hdf5-39e26205e1d5a2e11118190215eb078bc3bf1be0.tar.bz2 |
[svn-r23145] HDFFV-498: Eliminate a.exe file on cygwin configurations
Tested: cygwin, duck, jam, and local linux
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 1f1f298..65aa21b 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ ## ---------------------------------------------------------------------- ## Initialize configure. ## -AC_REVISION($Id: configure.ac 22697 2012-08-19 14:35:47Z hdftest $) +AC_REVISION($Id: configure.ac 23142 2013-01-08 02:19:17Z derobins $) AC_PREREQ([2.69]) ## AC_INIT takes the name of the package, the version number, and an @@ -26,7 +26,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.9.140], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.11-snap7], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADER([src/H5config.h]) @@ -2238,19 +2238,12 @@ AC_CACHE_CHECK([if lone colon can be used as an argument], [hdf5_cv_lone_colon], [ echo "int main(int argc, char * argv[]) {return 0;}" > conftest.c - $CC $CFLAGS conftest.c > /dev/null 2> /dev/null -case "`uname`" in - CYGWIN*) - echo "./a.exe :" > conftest.sh - ;; - *) - echo "./a.out :" > conftest.sh - ;; -esac + $CC $CFLAGS conftest.c -o a.out> /dev/null 2> /dev/null + echo "./a.out :" > conftest.sh chmod 700 conftest.sh ./conftest.sh 2> conftest.out - rm -f a.out a.exe + rm -f a.out TEST_OUTPUT=`cat conftest.out` if test "X$TEST_OUTPUT" = "X"; then |