]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - autogen.sh
sd-radv: Receive Router Solicitations
[thirdparty/systemd.git] / autogen.sh
index eeb0c1b5e3385356a22a8ca50a0424c55431500a..1897e23b535abbfec99b5ecca76a31c4a7e522ab 100755 (executable)
 
 set -e
 
+verb="$1"
+
+case "$verb" in
+"") ;;
+[cgals]) shift ;;
+*) echo "Unexpected argument: $verb" >&2; exit 1 ;;
+esac
+
+oldpwd=$(pwd)
+topdir=$(dirname $0)
+cd $topdir
+
 if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then
         # This part is allowed to fail
         cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
@@ -24,15 +36,6 @@ if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then
         echo "Activated pre-commit hook." || :
 fi
 
-if which gtkdocize >/dev/null 2>/dev/null; then
-        gtkdocize --docdir docs/ --flavour no-tmpl
-        gtkdocargs=--enable-gtk-doc
-else
-        echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation."
-        rm -f docs/gtk-doc.make
-        echo 'EXTRA_DIST =' > docs/gtk-doc.make
-fi
-
 intltoolize --force --automake
 autoreconf --force --install --symlink
 
@@ -44,24 +47,48 @@ args="\
 --sysconfdir=/etc \
 --localstatedir=/var \
 --libdir=$(libdir /usr/lib) \
-$gtkdocargs"
+"
+
+if [ -f "$topdir/.config.args" ]; then
+        args="$args $(cat $topdir/.config.args)"
+fi
 
 if [ ! -L /bin ]; then
 args="$args \
---with-rootprefix= \
+--with-rootprefix=/ \
 --with-rootlibdir=$(libdir /lib) \
 "
 fi
 
-if [ "x$1" = "xc" ]; then
-        ./configure CFLAGS='-g -O0' $args
-        make clean
+args="$args $@"
+cd $oldpwd
+
+if [ "$verb" = "c" ]; then
+        set -x
+        $topdir/configure CFLAGS='-g -O0 -ftrapv' $args
+        make clean >/dev/null
+elif [ "$verb" = "g" ]; then
+        set -x
+        $topdir/configure CFLAGS='-g -Og -ftrapv' $args
+        make clean >/dev/null
+elif [ "$verb" = "a" ]; then
+        set -x
+        $topdir/configure CFLAGS='-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' $args
+        make clean >/dev/null
+elif [ "$verb" = "l" ]; then
+        set -x
+        $topdir/configure CC=clang CFLAGS='-g -O0 -ftrapv' $args
+        make clean >/dev/null
+elif [ "$verb" = "s" ]; then
+        set -x
+        scan-build $topdir/configure CFLAGS='-std=gnu99 -g -O0 -ftrapv' $args
+        scan-build make
 else
         echo
         echo "----------------------------------------------------------------"
         echo "Initialized build system. For a common configuration please run:"
         echo "----------------------------------------------------------------"
         echo
-        echo "./configure CFLAGS='-g -O0' $args"
+        echo "$topdir/configure CFLAGS='-g -O0 -ftrapv' $args"
         echo
 fi