X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=autogen.sh;h=76d5b0e59011ff3919fe889d1951e0bfbe302e20;hb=3ccb027c907f9ee2890028e83b60296204bbf478;hp=a3a63685611f2db93282c57bcd92d769dd5c8dec;hpb=a19c3d2e8b590d95a4959c68895331b88d121ecb;p=platform%2Fupstream%2Fdbus.git diff --git a/autogen.sh b/autogen.sh index a3a6368..76d5b0e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -48,7 +48,7 @@ fi } LIBTOOLIZE=`which libtoolize` -if test -n $LIBTOOLIZE; then +if ! test -f $LIBTOOLIZE; then LIBTOOLIZE=`which glibtoolize` fi @@ -75,7 +75,7 @@ fi $LIBTOOLIZE --copy --force -$ACLOCAL $ACLOCAL_FLAGS +$ACLOCAL -I m4 $ACLOCAL_FLAGS ## optionally feature autoheader (autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader @@ -85,8 +85,9 @@ autoconf || echo "autoconf failed - version 2.5x is probably required" cd $ORIGDIR -run_configure=true -for arg in $*; do +if test x"$NOCONFIGURE" = x; then + run_configure=true + for arg in $*; do case $arg in --no-configure) run_configure=false @@ -94,10 +95,14 @@ for arg in $*; do *) ;; esac -done + done +else + run_configure=false +fi +#--enable-developer --enable-verbose-mode if $run_configure; then - $srcdir/configure --enable-maintainer-mode --config-cache "$@" + $srcdir/configure --enable-abstract-sockets --config-cache --enable-doxygen-docs=no "$@" || exit $? echo echo "Now type 'make' to compile $PROJECT." else