Update NEWS
[mono.git] / autogen.sh
index 44dab25bd8679aa4fb33f5b0e67f2bd2b271f169..837932c6113f4d6004b41d6eb05cd412370ecb52 100755 (executable)
@@ -8,8 +8,17 @@ srcdir=`dirname $0`
 test -z "$srcdir" && srcdir=.
 
 if [ -n "$MONO_PATH" ]; then
-       ACLOCAL_FLAGS="-I $MONO_PATH/share/aclocal $ACLOCAL_FLAGS"
-       PATH="$MONO_PATH/bin:$PATH"
+       # from -> /mono/lib:/another/mono/lib
+       # to -> /mono /another/mono
+       for i in `echo ${MONO_PATH} | tr ":" " "`; do
+               i=`dirname ${i}`
+               if [ -n "{i}" -a -d "${i}/share/aclocal" ]; then
+                       ACLOCAL_FLAGS="-I ${i}/share/aclocal $ACLOCAL_FLAGS"
+               fi
+               if [ -n "{i}" -a -d "${i}/bin" ]; then
+                       PATH="${i}/bin:$PATH"
+               fi
+       done
        export PATH
 fi
 
@@ -78,6 +87,37 @@ xlc )
   am_opt=--include-deps;;
 esac
 
+
+if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
+  if test -z "$NO_LIBTOOLIZE" ; then 
+    echo "Running libtoolize..."
+    libtoolize --force --copy
+  fi
+fi
+
+echo "Running aclocal $ACLOCAL_FLAGS ..."
+aclocal $ACLOCAL_FLAGS || {
+  echo
+  echo "**Error**: aclocal failed. This may mean that you have not"
+  echo "installed all of the packages you need, or you may need to"
+  echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\""
+  echo "for the prefix where you installed the packages whose"
+  echo "macros were not found"
+  exit 1
+}
+
+if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
+  echo "Running autoheader..."
+  autoheader || { echo "**Error**: autoheader failed."; exit 1; }
+fi
+
+echo "Running automake --gnu $am_opt ..."
+automake --add-missing --gnu $am_opt ||
+  { echo "**Error**: automake failed."; exit 1; }
+echo "Running autoconf ..."
+autoconf || { echo "**Error**: autoconf failed."; exit 1; }
+
+
 conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
 
 if test x$NOCONFIGURE = x; then