2002-05-10 11:16:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
echo "Initial preparation...this can take awhile, so sit tight..."
|
2002-07-21 11:32:34 +02:00
|
|
|
perl -w -e 'use File::Copy; exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { copy("./Makefile.am.oldautomake", "./Makefile.am"); } else { copy("./Makefile.am.newautomake", "./Makefile.am"); }'
|
2002-05-10 11:16:38 +02:00
|
|
|
aclocal
|
|
|
|
libtoolize --automake --copy --force
|
|
|
|
autoheader
|
|
|
|
automake --foreign --add-missing --copy
|
|
|
|
autoconf
|
|
|
|
|
|
|
|
echo "You are now ready to run ./configure ..."
|
|
|
|
|