Hello,

We don't want to run libtoolize --ltdl in libltdl, and we want to run 
it prior from detecting the configure.ac files. Here is a patch for
autogen.sh which does that.

--
Pat
Index: autogen.sh
===================================================================
RCS file: /sources/gnash/gnash/autogen.sh,v
retrieving revision 1.18
diff -u -3 -p -r1.18 autogen.sh
--- autogen.sh  29 Nov 2006 17:45:44 -0000      1.18
+++ autogen.sh  30 Nov 2006 17:47:42 -0000
@@ -106,6 +106,13 @@ xlc )
   am_opt=--include-deps;;
 esac
 
+if grep "^AC_PROG_LIBTOOL" configure.ac >/dev/null; then
+       if test -z "$NO_LIBTOOLIZE" ; then 
+         echo "Running libtoolize --force --ltdl --copy ..."
+         ${LIBTOOLIZE:-libtoolize} --force --ltdl --copy
+       fi
+fi
+
 for coin in `find $srcdir -name CVS -prune -o -name configure.ac -print`
 do 
   dr=`dirname $coin`
@@ -137,8 +144,8 @@ do 
       fi
       if grep "^AC_PROG_LIBTOOL" configure.ac >/dev/null; then
        if test -z "$NO_LIBTOOLIZE" ; then 
-         echo "Running libtoolize --force --ltdl --copy ..."
-         ${LIBTOOLIZE:-libtoolize} --force --ltdl --copy
+         echo "Running libtoolize --force --copy ..."
+         ${LIBTOOLIZE:-libtoolize} --force --copy
        fi
       fi
       echo "Running aclocal $aclocalinclude ..."
_______________________________________________
Gnash-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-dev

Reply via email to