summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 9 insertions, 2 deletions
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 $@
+
+