X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=b4c853f9775ab05b0bb8bcbdd186c8f08ce8b7e0;hp=43c763bf2fd074bce6f04fa702eda8575a6585dc;hb=08e7f22913075d25af283b3001db598840663f70;hpb=72a157b9ad240a075d0a6936168a297df51e3c50 diff --git a/autogen.sh b/autogen.sh index 43c763bf2..b4c853f97 100755 --- a/autogen.sh +++ b/autogen.sh @@ -41,11 +41,24 @@ autoheader echo " automake: $(automake --version | head -1)" automake --add-missing -if test -z "$@"; then - args="--prefix=/usr --exec-prefix= --sysconfdir=/etc" +CFLAGS="-g -Wall \ +-Wmissing-declarations -Wmissing-prototypes \ +-Wnested-externs -Wpointer-arith \ +-Wpointer-arith -Wsign-compare -Wchar-subscripts \ +-Wstrict-prototypes -Wshadow" + +if test -z "$1" -o "$1" = "install"; then + args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux" + args="$args --with-libdir-name=$(basename $(gcc -print-multi-os-directory))" + CFLAGS="$CFLAGS -O2" +elif test "$1" = "devel" ; then + args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux --enable-debug" + args="$args --with-libdir-name=$(basename $(gcc -print-multi-os-directory))" + CFLAGS="$CFLAGS -O0" else args=$@ fi echo " configure: $args" echo +export CFLAGS ./configure $args