diff options
author | lrknox <lrknox> | 2017-08-25 20:10:42 (GMT) |
---|---|---|
committer | lrknox <lrknox> | 2017-08-25 20:10:42 (GMT) |
commit | 7f758f2eea5c918a9100e6e7e6e0744a85e4c571 (patch) | |
tree | 49e9f344d5ad4af560d895bd698fdac35c246155 /configure | |
parent | 1115133e11e43c45f5f20d74ca4bae76815c63d3 (diff) | |
parent | 23a702e7bad93fc4f14eab07678c75d276e2d0ad (diff) | |
download | hdf5-7f758f2eea5c918a9100e6e7e6e0744a85e4c571.zip hdf5-7f758f2eea5c918a9100e6e7e6e0744a85e4c571.tar.gz hdf5-7f758f2eea5c918a9100e6e7e6e0744a85e4c571.tar.bz2 |
Merge branch '1.8/master' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into hdf5_1_8
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -679,6 +679,9 @@ BUILD_SHARED_SZIP_CONDITIONAL_TRUE LL_PATH USE_FILTER_SZIP USE_FILTER_DEFLATE +NOT_UNAME_CYGWIN_FALSE +NOT_UNAME_CYGWIN_TRUE +UNAME_CYGWIN AM_MAKEFLAGS LT_STATIC_EXEC USE_PLUGINS_CONDITIONAL_FALSE @@ -22794,6 +22797,11 @@ $as_echo "#define HAVE_DARWIN 1" >>confdefs.h ;; esac +## ----------- +## if `uname` is not CYGWIN, save that information to pass to Makefiles +## to disable building and testing plugins. + UNAME_CYGWIN="no" + ## Windows case "`uname`" in CYGWIN*) @@ -22810,6 +22818,7 @@ fi done + UNAME_CYGWIN="yes" ;; MINGW*) for ac_header in io.h winsock2.h sys/timeb.h @@ -22890,6 +22899,14 @@ done ;; esac + if test "X$UNAME_CYGWIN" = "Xno"; then + NOT_UNAME_CYGWIN_TRUE= + NOT_UNAME_CYGWIN_FALSE='#' +else + NOT_UNAME_CYGWIN_TRUE='#' + NOT_UNAME_CYGWIN_FALSE= +fi + ## ---------------------------------------------------------------------- ## Some platforms require that all symbols are resolved when a library @@ -27007,7 +27024,7 @@ if test "${enable_debug+set}" = set; then : fi -## Default to no if producton is enabled +## Default to no if production is enabled if test "X-$DEBUG_PKG" = X- ; then if test "$enable_production" = yes ; then DEBUG_PKG=no @@ -30922,6 +30939,10 @@ if test -z "${USE_PLUGINS_CONDITIONAL_TRUE}" && test -z "${USE_PLUGINS_CONDITION as_fn_error $? "conditional \"USE_PLUGINS_CONDITIONAL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${NOT_UNAME_CYGWIN_TRUE}" && test -z "${NOT_UNAME_CYGWIN_FALSE}"; then + as_fn_error $? "conditional \"NOT_UNAME_CYGWIN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${BUILD_SHARED_SZIP_CONDITIONAL_TRUE}" && test -z "${BUILD_SHARED_SZIP_CONDITIONAL_FALSE}"; then as_fn_error $? "conditional \"BUILD_SHARED_SZIP_CONDITIONAL\" was never defined. |