summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorHubert Figuiere <hub@figuiere.net>2006-12-10 20:53:31 -0500
committerHubert Figuiere <hub@figuiere.net>2006-12-10 20:53:31 -0500
commit6cb937b0facee98bef212736392ca8f3bf43974a (patch)
tree6c028a644708a8e4b9c3bfd05d2c29c3e5415db5 /autogen.sh
parent4171c15a0ee088e39fedf7290780e3872ed3bc13 (diff)
* autogen.sh: --enable-maintainer-mode by default when
run from the autogen.sh * configure.in: detect glib and gdk-pixbuf * gnome/*: new files. * Makefile.am: gnome subdirectory.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 2a7965d..954513e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -30,9 +30,10 @@ $AUTOCONF
cd $builddir
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."
+ echo "I am going to run ./configure with --enable-maintainer-mode"
+ echo "If you wish to pass any to it, please specify them on "
+ echo "the $0 command line."
fi
echo "Running configure..."
-$topsrcdir/configure "$@"
+$topsrcdir/configure --enable-maintainer-mode "$@"