diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-22 23:50:25 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-22 23:50:25 (GMT) |
commit | 0ade5bb44bd24fba913ee8d383029638cff60418 (patch) | |
tree | 6861b7503b260abbbf25b5196a9dcda5eeaec448 /c++ | |
parent | fd9f73d5fe811b032688296399411781077d28ce (diff) | |
download | hdf5-0ade5bb44bd24fba913ee8d383029638cff60418.zip hdf5-0ade5bb44bd24fba913ee8d383029638cff60418.tar.gz hdf5-0ade5bb44bd24fba913ee8d383029638cff60418.tar.bz2 |
[svn-r5227] Purpose:
Feature Update
Description:
Modified the AC_OUTPUT macro to coincide with the now-standard
way of doing things. I.e., you put all of the files you want to
generate into the AC_CONFIG_FILES macro and invode AC_OUTPUT with
no parameters.
Platforms tested:
Linux
Diffstat (limited to 'c++')
-rwxr-xr-x | c++/configure | 8 | ||||
-rw-r--r-- | c++/configure.in | 15 |
2 files changed, 16 insertions, 7 deletions
diff --git a/c++/configure b/c++/configure index 9a70f95..c5cfc0f 100755 --- a/c++/configure +++ b/c++/configure @@ -3266,7 +3266,7 @@ irix5* | irix6*) # This must be Linux ELF. linux-gnu*) case $host_cpu in - alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* ) + alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | s390* ) lt_cv_deplibs_check_method=pass_all ;; *) # glibc up to 2.1.1 does not perform some relocations on ARM @@ -5468,7 +5468,6 @@ else # End MAJOR HACK # ####################################################################### - # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. allow_undefined_flag='${wl}-berok' @@ -6733,7 +6732,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 6736 "configure" +#line 6735 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -6831,7 +6830,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 6834 "configure" +#line 6833 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -8117,6 +8116,7 @@ rm -f conftest conftest.o conftest.c core core.* *.core dummy.o saved_no_create=$no_create no_create=yes ac_config_files="$ac_config_files config/depend1 config/depend2 config/depend3 config/depend4 config/dependN config/commence config/conclude Makefile src/Makefile test/Makefile examples/Makefile" + cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure diff --git a/c++/configure.in b/c++/configure.in index b9f4a20..17501c3 100644 --- a/c++/configure.in +++ b/c++/configure.in @@ -462,9 +462,18 @@ dnl things need to be done. dnl Then the config.status file (but not makefiles) saved_no_create=$no_create no_create=yes -AC_OUTPUT(config/depend1 config/depend2 config/depend3 config/depend4 \ - config/dependN config/commence config/conclude Makefile \ - src/Makefile test/Makefile examples/Makefile) +AC_CONFIG_FILES([config/depend1 + config/depend2 + config/depend3 + config/depend4 + config/dependN + config/commence + config/conclude + Makefile + src/Makefile + test/Makefile + examples/Makefile]) +AC_OUTPUT no_create=$saved_no_create dnl Finally the makefiles |