summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRob Taylor <rob.taylor@collabora.co.uk>2006-10-04 23:43:29 +0100
committerRob Taylor <rob.taylor@collabora.co.uk>2006-10-04 23:43:29 +0100
commit33412cde926a9fc6ce86618835661bbc48475177 (patch)
treee85589e73773e931ad4945a10a9ab3d0656eef9b /autogen.sh
parentb47e9bca585b1104f6d7309b02da27b123015611 (diff)
Make autogen a bit more useful for maintainers
Adds default configure parameters - the ones you usually want ;)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 2d6c1e2..bbdb930 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -11,6 +11,8 @@ PROJECT=dbus-glib
TEST_TYPE=-f
FILE=dbus-glib-1.pc.in
+DEFAULT_CONFIGURE_ARGS="--enable-maintainer-mode --enable-gtk-doc --enable-tests --enable-verbose-mode --enable-checks --enable-asserts"
+
# Not all echo versions allow -n, so we check what is possible. This test is
# based on the one in autoconf.
case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
@@ -119,9 +121,11 @@ test $TEST_TYPE $FILE || {
}
if test -z "$*"; then
- printbold
- printbold "I am going to run ./configure with no arguments - if you wish "
- printbold "to pass any to it, please specify them on the $0 command line."
+ printbold
+ printbold "I am going to run ./configure with default arguments:"
+ printbold "$DEFAULT_CONFIGURE_ARGS"
+ printbold "If you wish to pass any others to it, please specify them on the"
+ printbold "$0 command line."
printbold
fi
@@ -147,7 +151,7 @@ done
if $run_configure; then
if test -z "$*"; then
- $srcdir/configure --enable-maintainer-mode --enable-gtk-doc --enable-tests --enable-verbose-mode --enable-checks --enable-asserts
+ $srcdir/configure $DEFAULT_CONFIGURE_ARGS
else
$srcdir/configure --enable-maintainer-mode "$@"
fi