[Liboil-commit] autogen.sh

David Schleef ds at kemper.freedesktop.org
Mon Jun 30 13:00:26 PDT 2008


 autogen.sh |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

New commits:
commit b3208ae93e99f0d6259d1e49f995bf9c6c00b430
Author: David Schleef <ds at schleef.org>
Date:   Mon Jun 30 13:00:09 2008 -0700

    make autogen flags dependent on username

diff --git a/autogen.sh b/autogen.sh
index d832102..60a9966 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,12 @@
 #!/bin/sh
 
+if [ $(whoami) = ds ] ; then
+  confflags="--enable-gtk-doc"
+else
+  confflags="--enable-gtk-doc"
+fi
+
 autoreconf -i -f &&
-./configure --enable-maintainer-mode --disable-static --enable-gtk-doc $@
-#./configure --enable-maintainer-mode --disable-static --with-alternate-optimization="-O3 -funroll-all-loops" $@
+  ./configure --enable-maintainer-mode --disable-static $confflags $@
+
+


More information about the Liboil-commit mailing list