]> sjero.net Git - linphone/blobdiff - autogen.sh
Aac-eld add missing header according to RFC3640 3.3.6
[linphone] / autogen.sh
index a8bd1ca1ea1e87aa6d8618271f2d70fd99f318cf..3bb716755f6bc81d75f16e9aba19f49935f6757c 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-AM_VERSION="1.10"
+#AM_VERSION="1.10"
 if ! type aclocal-$AM_VERSION 1>/dev/null 2>&1; then
        # automake-1.10 (recommended) is not available on Fedora 8
        AUTOMAKE=automake
@@ -20,6 +20,10 @@ if test -d /opt/local/share/aclocal ; then
         ACLOCAL_ARGS="-I /opt/local/share/aclocal"
 fi
 
+if test -d /share/aclocal ; then
+        ACLOCAL_ARGS="$ACLOCAL_ARGS -I /share/aclocal"
+fi
+
 if test -f /opt/local/bin/intltoolize ; then
        #darwin
        INTLTOOLIZE=/opt/local/bin/intltoolize
@@ -38,8 +42,12 @@ autoheader
 $AUTOMAKE --force-missing --add-missing --copy
 autoconf
 
-echo "Generating build scripts in oRTP..."
-cd oRTP && ./autogen.sh && cd -
+if [ -x oRTP/autogen.sh ]; then
+       echo "Generating build scripts in oRTP..."
+       ( cd oRTP && ./autogen.sh )
+fi
 
-echo "Generating build scripts in mediastreamer2..."
-cd mediastreamer2 && ./autogen.sh && cd -
+if [ -x mediastreamer2/autogen.sh ]; then
+       echo "Generating build scripts in mediastreamer2..."
+       ( cd mediastreamer2 && ./autogen.sh )
+fi