[xiph-commits] r12650 - branches/lowmem-branch/Tremor

thomasvs at svn.xiph.org thomasvs at svn.xiph.org
Mon Mar 5 06:51:43 PST 2007


Author: thomasvs
Date: 2007-03-05 06:51:41 -0800 (Mon, 05 Mar 2007)
New Revision: 12650

Modified:
   branches/lowmem-branch/Tremor/autogen.sh
   branches/lowmem-branch/Tremor/configure.in
Log:
fix autotools build by reordering

Modified: branches/lowmem-branch/Tremor/autogen.sh
===================================================================
--- branches/lowmem-branch/Tremor/autogen.sh	2007-03-05 14:49:32 UTC (rev 12649)
+++ branches/lowmem-branch/Tremor/autogen.sh	2007-03-05 14:51:41 UTC (rev 12650)
@@ -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-branch/Tremor/configure.in
===================================================================
--- branches/lowmem-branch/Tremor/configure.in	2007-03-05 14:49:32 UTC (rev 12649)
+++ branches/lowmem-branch/Tremor/configure.in	2007-03-05 14:51:41 UTC (rev 12650)
@@ -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