[xiph-commits] r12651 - branches/lowmem-no-byte/Tremor
thomasvs at svn.xiph.org
thomasvs at svn.xiph.org
Mon Mar 5 06:52:48 PST 2007
Author: thomasvs
Date: 2007-03-05 06:52:46 -0800 (Mon, 05 Mar 2007)
New Revision: 12651
Modified:
branches/lowmem-no-byte/Tremor/autogen.sh
branches/lowmem-no-byte/Tremor/configure.in
Log:
fix autotools build by reordering
Modified: branches/lowmem-no-byte/Tremor/autogen.sh
===================================================================
--- branches/lowmem-no-byte/Tremor/autogen.sh 2007-03-05 14:51:41 UTC (rev 12650)
+++ branches/lowmem-no-byte/Tremor/autogen.sh 2007-03-05 14:52:46 UTC (rev 12651)
@@ -48,14 +48,14 @@
echo "Generating configuration files for $package, please wait...."
echo " aclocal $ACLOCAL_FLAGS"
-aclocal $ACLOCAL_FLAGS
-#echo " autoheader"
-#autoheader
+aclocal $ACLOCAL_FLAGS || exit 1
+echo " autoheader"
+autoheader || exit 1
echo " libtoolize --automake"
-libtoolize --automake
+libtoolize --automake || exit 1
echo " automake --add-missing $AUTOMAKE_FLAGS"
-automake --add-missing $AUTOMAKE_FLAGS
+automake --add-missing $AUTOMAKE_FLAGS || exit 1
echo " autoconf"
-autoconf
+autoconf || exit 1
$srcdir/configure "$@" && echo
Modified: branches/lowmem-no-byte/Tremor/configure.in
===================================================================
--- branches/lowmem-no-byte/Tremor/configure.in 2007-03-05 14:51:41 UTC (rev 12650)
+++ branches/lowmem-no-byte/Tremor/configure.in 2007-03-05 14:52:46 UTC (rev 12651)
@@ -5,6 +5,12 @@
dnl ------------------------------------------------
AC_INIT(mdct.c)
+
+AC_CANONICAL_HOST
+AC_CANONICAL_TARGET
+
+AM_CONFIG_HEADER([config.h])
+
AM_INIT_AUTOMAKE(libvorbisidec,1.2.0)
dnl Library versioning
@@ -33,8 +39,6 @@
dnl Set build flags based on environment
dnl --------------------------------------------------
-AC_CANONICAL_HOST
-
dnl Set some target options
cflags_save="$CFLAGS"
More information about the commits
mailing list