]> err.no Git - pkg-config/commitdiff
2009-03-30 Tollef Fog Heen <tfheen@err.no>
authorTollef Fog Heen <tfheen@err.no>
Mon, 30 Mar 2009 20:06:58 +0000 (22:06 +0200)
committerTollef Fog Heen <tfheen@err.no>
Mon, 30 Mar 2009 20:06:58 +0000 (22:06 +0200)
* autogen.sh: Allow not running configure, wanted by cygwin.

ChangeLog
autogen.sh

index 7fc42dd5114eb63282891f2cea7c4609a64d2340..be748a9e310942ab1d786632ad03478f7b130526 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2009-03-30  Tollef Fog Heen  <tfheen@err.no>
 
+       * autogen.sh: Allow not running configure, wanted by cygwin.
+
        * check/check-missing, check/check-libs,
        check/check-requires-private: Handle the case of indirect being
        enabled correctly in checks.
index da5958b644068102df89be59922c94f2529711b3..b8fbac4a6834955acabdc7e4407b95513ec67922 100755 (executable)
@@ -80,9 +80,14 @@ perl -p -w -i.bak -e 's/if \(compare_func\(l1->data,l2->data\) < 0\)/if \(compar
 
 (cd glib-1.2.10 && libtoolize --copy --force && $ACLOCAL $ACLOCAL_FLAGS && $AUTOMAKE && $AUTOCONF) || exit 1
 
+run_configure=yes
 if test -z "$*"; then
        echo "I am going to run ./configure with no arguments - if you wish "
         echo "to pass any to it, please specify them on the $0 command line."
+else
+    case "--no-configure" in
+       "*$") run_configure=no
+    esac
 fi
 
 libtoolize --copy --force
@@ -98,9 +103,12 @@ $AUTOCONF
 
 cd $ORIGDIR
 
-export AUTOMAKE
-export ACLOCAL
-$srcdir/configure --enable-maintainer-mode --disable-shared --disable-threads "$@"
-
-echo 
-echo "Now type 'make' to compile $PROJECT."
+if [ "$run_configure" = "yes" ]; then
+    export AUTOMAKE
+    export ACLOCAL
+    $srcdir/configure --enable-maintainer-mode --disable-shared --disable-threads "$@"
+    echo 
+    echo "Now type 'make' to compile $PROJECT."
+else
+    echo "Now type './configure && make' to compile $PROJECT."
+fi