2 # Run this to set up the build system: configure, makefiles, etc.
3 # (based on the version in enlightenment's cvs)
11 test -z "$srcdir" && srcdir
=.
16 /bin
/echo "checking for autoconf... "
17 (autoconf
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
19 echo "You must have autoconf installed to compile $package."
20 echo "Download the appropriate package for your distribution,"
21 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
25 VERSIONGREP
="sed -e s/.*[^0-9\.]\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/"
26 VERSIONMKMAJ
="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/"
27 VERSIONMKMIN
="sed -e s/.*[0-9][0-9]*\.//"
29 # do we need automake?
30 if test -r Makefile.am
; then
31 AM_OPTIONS
=`fgrep AUTOMAKE_OPTIONS Makefile.am`
32 AM_NEEDED
=`echo $AM_OPTIONS | $VERSIONGREP`
33 if test x
"$AM_NEEDED" = "x$AM_OPTIONS"; then
36 if test -z $AM_NEEDED; then
37 /bin
/echo -n "checking for automake... "
40 if ($AUTOMAKE --version < /dev
/null
> /dev
/null
2>&1); then
47 /bin
/echo -n "checking for automake $AM_NEEDED or later... "
48 majneeded
=`echo $AM_NEEDED | $VERSIONMKMAJ`
49 minneeded
=`echo $AM_NEEDED | $VERSIONMKMIN`
50 for am
in automake-
$AM_NEEDED automake
$AM_NEEDED \
51 automake automake-1.7 automake-1.8 automake-1.9 \
52 automake-1.10 automake-1.11
; do
53 ($am --version < /dev
/null
> /dev
/null
2>&1) ||
continue
54 ver
=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
55 maj
=`echo $ver | $VERSIONMKMAJ`
56 min
=`echo $ver | $VERSIONMKMIN`
57 if test $maj -eq $majneeded -a $min -ge $minneeded; then
63 test -z $AUTOMAKE && /bin
/echo "no"
64 /bin
/echo -n "checking for aclocal $AM_NEEDED or later... "
65 for ac
in aclocal-
$AM_NEEDED aclocal
$AM_NEEDED \
66 aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 aclocal-1.10 aclocal-1.11
; do
67 ($ac --version < /dev
/null
> /dev
/null
2>&1) ||
continue
68 ver
=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP`
69 maj
=`echo $ver | $VERSIONMKMAJ`
70 min
=`echo $ver | $VERSIONMKMIN`
71 if test $maj -eq $majneeded -a $min -ge $minneeded; then
77 test -z $ACLOCAL && /bin
/echo "no"
79 test -z $AUTOMAKE ||
test -z $ACLOCAL && {
81 echo "You must have automake installed to compile $package."
82 echo "Download the appropriate package for your distribution,"
83 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
88 /bin
/echo -n "checking for libtool... "
89 for LIBTOOLIZE
in libtoolize glibtoolize nope
; do
90 ($LIBTOOLIZE --version) < /dev
/null
> /dev
/null
2>&1 && break
92 if test x
$LIBTOOLIZE = xnope
; then
98 ($LIBTOOLIZE --version) < /dev
/null
> /dev
/null
2>&1 ||
{
100 echo "You must have libtool installed to compile $package."
101 echo "Download the appropriate package for your system,"
102 echo "or get the source from one of the GNU ftp sites"
103 echo "listed in http://www.gnu.org/order/ftp.html"
107 if test "$DIE" -eq 1; then
111 /bin
/echo "Generating configuration files for $package, please wait...."
113 /bin
/echo " $ACLOCAL $ACLOCAL_FLAGS"
114 $ACLOCAL $ACLOCAL_FLAGS ||
exit 1
115 /bin
/echo " $LIBTOOLIZE --automake --copy --force"
116 $LIBTOOLIZE --automake --copy --force ||
exit 1
117 /bin
/echo " $AUTOMAKE --add-missing --copy $AUTOMAKE_FLAGS"
118 $AUTOMAKE --add-missing --copy $AUTOMAKE_FLAGS ||
exit 1
119 /bin
/echo " autoconf"
122 if test "x$1" = "x--noconfigure"; then
126 if test -z "$*"; then
127 echo "I am going to run ./configure with no arguments - if you wish "
128 echo "to pass any to it, please specify them on the $0 command line."
129 echo "(Use --noconfigure to suppress running configure at all.)"
133 $srcdir/configure
"$@" && /bin
/echo