aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-22 09:50:02 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-22 09:50:02 +0000
commit6b5125dde910d8810af637d2c849905124392318 (patch)
tree263f85c15ddfc24c55bc3bbc0c0e49244974a213 /build
parent336448a8c53bcafcb58ccf14b63ffb3404376a40 (diff)
removedthe autoheader stuff as we don't need it
svn path=/trunk/externals/zexy/; revision=10198
Diffstat (limited to 'build')
-rwxr-xr-xbuild/autoconf/autogen.sh52
1 files changed, 2 insertions, 50 deletions
diff --git a/build/autoconf/autogen.sh b/build/autoconf/autogen.sh
index 7a9c5ef..2767ebf 100755
--- a/build/autoconf/autogen.sh
+++ b/build/autoconf/autogen.sh
@@ -49,7 +49,7 @@
# providing a POSIX shell script (mostly complete) reimplementation of
# autoreconf.
#
-# The AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL, AUTOHEADER
+# The AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL
# environment variables and corresponding _OPTIONS variables (e.g.
# AUTORECONF_OPTIONS) may be used to override the default automatic
# detection behaviors. Similarly the _VERSION variables will override
@@ -125,7 +125,7 @@ usage ( ) {
echo "Should autoreconf fail, manual preparation steps will be run"
echo "potentially accounting for several common preparation issues. The"
- echo "AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL, AUTOHEADER,"
+ echo "AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL"
echo "PROJECT, & CONFIGURE environment variables and corresponding _OPTIONS"
echo "variables (e.g. AUTORECONF_OPTIONS) may be used to override the"
echo "default automatic detection behavior."
@@ -274,20 +274,9 @@ fi
if [ "x$AUTOCONF_OPTIONS" = "x" ] ; then
AUTOCONF_OPTIONS="-f"
fi
-if [ "x$AUTOMAKE_OPTIONS" = "x" ] ; then
- AUTOMAKE_OPTIONS="-a -c -f"
-fi
-ALT_AUTOMAKE_OPTIONS="-a -c"
-if [ "x$LIBTOOLIZE_OPTIONS" = "x" ] ; then
- LIBTOOLIZE_OPTIONS="--automake -c -f"
-fi
-ALT_LIBTOOLIZE_OPTIONS="--automake --copy --force"
if [ "x$ACLOCAL_OPTIONS" = "x" ] ; then
ACLOCAL_OPTIONS=""
fi
-if [ "x$AUTOHEADER_OPTIONS" = "x" ] ; then
- AUTOHEADER_OPTIONS=""
-fi
for arg in $ARGS ; do
case "x$arg" in
x--help) HELP=yes ;;
@@ -713,22 +702,6 @@ else
fi
-########################
-# check for autoheader #
-########################
-if [ "x$AUTOHEADER" = "x" ] ; then
- for AUTOHEADER in autoheader ; do
- $VERBOSE_ECHO "Checking autoheader version: $AUTOHEADER --version"
- $AUTOHEADER --version > /dev/null 2>&1
- if [ $? = 0 ] ; then
- break
- fi
- done
-else
- $ECHO "Using AUTOHEADER environment variable override: $AUTOHEADER"
-fi
-
-
#########################
# check if version only #
#########################
@@ -1177,7 +1150,6 @@ manual_autogen ( ) {
# libtoolize --automake -c -f #
# aclocal [-I m4] #
# autoconf -f #
- # autoheader #
# automake -a -c -f #
##################################################
@@ -1344,26 +1316,6 @@ EOF
fi # autoconf ret = 0
fi # autoconf ret = 0
- ##############
- # autoheader #
- ##############
- need_autoheader=no
- for feature in AM_CONFIG_HEADER AC_CONFIG_HEADER ; do
- $VERBOSE_ECHO "Searching for $feature in $CONFIGURE"
- found="`grep \"^$feature.*\" $CONFIGURE`"
- if [ ! "x$found" = "x" ] ; then
- need_autoheader=yes
- break
- fi
- done
- if [ "x$need_autoheader" = "xyes" ] ; then
- $VERBOSE_ECHO "$AUTOHEADER $AUTOHEADER_OPTIONS"
- autoheader_output="`$AUTOHEADER $AUTOHEADER_OPTIONS 2>&1`"
- ret=$?
- $VERBOSE_ECHO "$autoheader_output"
- if [ ! $ret = 0 ] ; then $ECHO "ERROR: $AUTOHEADER failed" && exit 2 ; fi
- fi # need_autoheader
-
############
# automake #
############