diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-04-20 06:00:11 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-04-20 06:00:11 (GMT) |
commit | bc36a358d115d1cddc7328e61a44558c023d20fd (patch) | |
tree | f4c8f79102fc8decb73d04c8706418216a0676a8 /bin/reconfigure | |
parent | 476cbeda792322fb66600eeb7022d303bd55d7c7 (diff) | |
download | hdf5-bc36a358d115d1cddc7328e61a44558c023d20fd.zip hdf5-bc36a358d115d1cddc7328e61a44558c023d20fd.tar.gz hdf5-bc36a358d115d1cddc7328e61a44558c023d20fd.tar.bz2 |
[svn-r16792] Description:
- Updated bin/reconfigure to use latest version of automake (1.10.2).
Re-generated Makefile.in's by running bin/reconfigure.
- Added libtool version numbers to c++, fortran, hl, hl c++, and hl fortran
libraries.
Tested:
jam, liberty, smirom
Diffstat (limited to 'bin/reconfigure')
-rwxr-xr-x | bin/reconfigure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reconfigure b/bin/reconfigure index 05e52ba..1fffa45 100755 --- a/bin/reconfigure +++ b/bin/reconfigure @@ -29,9 +29,9 @@ # HDF5 currently uses the following versions of the autotools: AUTOCONF_VERSION="autoconf (GNU Autoconf) 2.61" -AUTOMAKE_VERSION="automake (GNU automake) 1.10.1" +AUTOMAKE_VERSION="automake (GNU automake) 1.10.2" AUTOHEADER_VERSION="autoheader (GNU Autoconf) 2.61" -ACLOCAL_VERSION="aclocal (GNU automake) 1.10.1" +ACLOCAL_VERSION="aclocal (GNU automake) 1.10.2" LIBTOOL_VERSION="(GNU libtool) 2.2.6" # # When upgrading automake's version, don't forget to also update its @@ -44,13 +44,13 @@ if test -z ${AUTOCONF}; then AUTOCONF=/mnt/hdf/packages/autoconf/autoconf-2.61/bin/autoconf fi if test -z ${AUTOMAKE}; then - AUTOMAKE=/mnt/hdf/packages/automake/automake-1.10.1/bin/automake-1.10 + AUTOMAKE=/mnt/hdf/packages/automake/automake-1.10.2/bin/automake-1.10 fi if test -z ${AUTOHEADER}; then AUTOHEADER=/mnt/hdf/packages/autoconf/autoconf-2.61/bin/autoheader fi if test -z ${ACLOCAL}; then - ACLOCAL=/mnt/hdf/packages/automake/automake-1.10.1/bin/aclocal-1.10 + ACLOCAL=/mnt/hdf/packages/automake/automake-1.10.2/bin/aclocal-1.10 fi if test -z ${LIBTOOL}; then LIBTOOL=/mnt/hdf/packages/libtool/libtool-2.2.6a/bin/libtool |