diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-07 17:04:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 17:04:50 (GMT) |
commit | e1e2ec3093c653858f02298b5a9c7d5cfbc9f6e4 (patch) | |
tree | c4be64c5af7cecc74e70c9911dc536bb3e046563 /configure.ac | |
parent | 65da430c1129f03db2db70350ca7348bd6f1be76 (diff) | |
download | hdf5-e1e2ec3093c653858f02298b5a9c7d5cfbc9f6e4.zip hdf5-e1e2ec3093c653858f02298b5a9c7d5cfbc9f6e4.tar.gz hdf5-e1e2ec3093c653858f02298b5a9c7d5cfbc9f6e4.tar.bz2 |
Minor normalization w/ develop (#3073)
Mostly bin directory
* bin/release uses sha256
* bin/h5vers whitespace changes
* bin/genparser warning fixes + HL changes
* Add bin directory for make distclean
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 6d4f6d7..403a82b 100644 --- a/configure.ac +++ b/configure.ac @@ -559,7 +559,7 @@ AC_DEFINE_UNQUOTED([PAC_C_MAX_REAL_PRECISION], $PAC_C_MAX_REAL_PRECISION, [Deter AC_MSG_RESULT([$PAC_C_MAX_REAL_PRECISION]) ## ---------------------------------------------------------------------- -## Check if they would like the Fortran interface compiled +## Check if the Fortran interface should be enabled ## ## This needs to be exposed for the library info file even if Fortran is disabled. @@ -797,7 +797,7 @@ HDF_CXX=no ## AC_PROG_CXX defines some macros that Automake 1.9.x uses and will ## miss even if c++ is not enabled. AC_PROG_CXX -AC_PROG_CXXCPP ## this is checked for when AC_HEADER_STDC is done +AC_PROG_CXXCPP AC_MSG_CHECKING([if c++ interface enabled]) @@ -922,7 +922,7 @@ esac ## ---------------------------------------------------------------------- ## Check which archiving tool to use. This needs to be done before -## the AM_PROG_LIBTOOL macro. +## the LT_INIT macro. ## if test -z "$AR"; then AC_CHECK_PROGS([AR], [ar xar], [:], [$PATH]) @@ -1169,7 +1169,7 @@ AC_SUBST([HDF5_TOOLS]) ## Default is to build tests and tools HDF5_TOOLS=yes -AC_MSG_CHECKING([if building tools is disabled]) +AC_MSG_CHECKING([if building tools is enabled]) AC_ARG_ENABLE([tools], [AS_HELP_STRING([--enable-tools], @@ -2050,10 +2050,8 @@ if test "X$THREADSAFE" = "Xyes"; then AC_CACHE_VAL([hdf5_cv_system_scope_threads], [AC_RUN_IFELSE( [AC_LANG_PROGRAM([ - #if STDC_HEADERS #include <stdlib.h> #include <pthread.h> - #endif ],[ pthread_attr_t attribute; int ret; @@ -2706,8 +2704,8 @@ AC_SUBST([INTERNAL_DEBUG_OUTPUT]) ## too specialized or have huge performance hits. These ## are not listed in the "all" packages list. ## -## all_packages="AC,B,B2,D,F,FA,FL,FS,HL,I,O,S,ST,T,Z" -all_packages="AC,B2,CX,D,F,HL,I,O,S,ST,T,Z" +## all_packages="AC,B,B2,D,F,FA,FL,FS,HL,I,O,S,T,Z" +all_packages="AC,B2,CX,D,F,HL,I,O,S,T,Z" case "X-$INTERNAL_DEBUG_OUTPUT" in X-yes|X-all) |