Brian Gaeke | 4940c57 | 2004-02-08 07:44:48 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | die () { |
| 3 | echo "$@" 1>&2 |
| 4 | exit 1 |
| 5 | } |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 6 | if test "$1" = --with-automake ; then |
| 7 | outfile=configure_am |
| 8 | configfile=configure.am |
| 9 | with_automake=1 |
Reid Spencer | 2b6c038 | 2004-10-10 19:09:33 +0000 | [diff] [blame] | 10 | elif test -z "$1" ; then |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 11 | outfile=configure |
| 12 | configfile=configure.ac |
| 13 | with_automake=0 |
Reid Spencer | 2b6c038 | 2004-10-10 19:09:33 +0000 | [diff] [blame] | 14 | else |
| 15 | die "Invalid option: $1" |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 16 | fi |
| 17 | test -d autoconf && test -f autoconf/$configfile && cd autoconf |
| 18 | test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first" |
Reid Spencer | b03adb8 | 2004-09-19 22:14:24 +0000 | [diff] [blame] | 19 | autoconf --version | egrep '2\.59' > /dev/null |
| 20 | if test $? -ne 0 ; then |
| 21 | die "Your autoconf was not detected as being 2.59" |
| 22 | fi |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 23 | aclocal --version | egrep '1\.9\.2' > /dev/null |
Reid Spencer | b03adb8 | 2004-09-19 22:14:24 +0000 | [diff] [blame] | 24 | if test $? -ne 0 ; then |
| 25 | die "Your aclocal was not detected as being 1.9.1" |
| 26 | fi |
| 27 | autoheader --version | egrep '2\.59' > /dev/null |
| 28 | if test $? -ne 0 ; then |
| 29 | die "Your autoheader was not detected as being 2.59" |
| 30 | fi |
| 31 | libtool --version | grep '1.5.10' > /dev/null |
| 32 | if test $? -ne 0 ; then |
| 33 | die "Your libtool was not detected as being 1.5.10" |
Brian Gaeke | 4940c57 | 2004-02-08 07:44:48 +0000 | [diff] [blame] | 34 | fi |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 35 | if test $with_automake -eq 1 ; then |
| 36 | automake --version | grep 'automake.*1.9.2' > /dev/null |
| 37 | if test $? -ne 0 ; then |
| 38 | die "Your automake was not detected as being 1.9.2" |
| 39 | fi |
| 40 | fi |
Reid Spencer | 8eacb0c | 2004-09-19 22:30:53 +0000 | [diff] [blame] | 41 | echo "" |
| 42 | echo "### NOTE: ############################################################" |
Reid Spencer | 5d6c4a5 | 2004-09-21 17:13:23 +0000 | [diff] [blame] | 43 | echo "### If you get *any* warnings from autoconf below you MUST fix the" |
| 44 | echo "### scripts in the m4 directory because there are future forward" |
Reid Spencer | 8eacb0c | 2004-09-19 22:30:53 +0000 | [diff] [blame] | 45 | echo "### compatibility or platform support issues at risk. Please do NOT" |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 46 | echo "### commit any configure script that was generated with warnings" |
| 47 | echo "### present. You should get just three 'Regenerating..' lines." |
Reid Spencer | 8eacb0c | 2004-09-19 22:30:53 +0000 | [diff] [blame] | 48 | echo "######################################################################" |
| 49 | echo "" |
Reid Spencer | dcd3875 | 2004-09-07 16:00:48 +0000 | [diff] [blame] | 50 | echo "Regenerating aclocal.m4 with aclocal" |
| 51 | cwd=`pwd` |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 52 | if test $with_automake -eq 1 ; then |
Reid Spencer | 2b6c038 | 2004-10-10 19:09:33 +0000 | [diff] [blame] | 53 | mv configure.ac .configure.ac.save |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 54 | cp configure.am configure.ac |
| 55 | cp configure.am ../configure.ac |
| 56 | fi |
Reid Spencer | b03adb8 | 2004-09-19 22:14:24 +0000 | [diff] [blame] | 57 | aclocal --force -I $cwd/m4 || die "aclocal failed" |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 58 | echo "Regenerating configure with autoconf 2.59" |
| 59 | autoconf --force --warnings=all -o ../$outfile $configfile || die "autoconf failed" |
Brian Gaeke | 4940c57 | 2004-02-08 07:44:48 +0000 | [diff] [blame] | 60 | cd .. |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 61 | echo "Regenerating config.h.in with autoheader 2.59" |
| 62 | autoheader -I autoconf -I autoconf/m4 autoconf/$configfile || die "autoheader failed" |
| 63 | if test $with_automake -eq 1 ; then |
| 64 | echo "Regenerating makefiles with automake 1.9.2" |
| 65 | cp autoconf/aclocal.m4 . |
Reid Spencer | 2b6c038 | 2004-10-10 19:09:33 +0000 | [diff] [blame] | 66 | automake --gnu --add-missing --copy --force-missing |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 67 | cd $cwd |
Reid Spencer | 2b6c038 | 2004-10-10 19:09:33 +0000 | [diff] [blame] | 68 | mv .configure.ac.save configure.ac |
Reid Spencer | 6843e38 | 2004-10-08 05:33:35 +0000 | [diff] [blame] | 69 | fi |
Brian Gaeke | 4940c57 | 2004-02-08 07:44:48 +0000 | [diff] [blame] | 70 | exit 0 |