X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=ef3f579cbd3a200f3c86dedd19b5c2edeea6b284;hp=4ec4e0551aa244fe0dce71d54c9033029fc82642;hb=aba31da054ccdcf306cdb21473457da05ced3d28;hpb=e231a5db51f1b21252b2404d0aa2f243baa87a1a diff --git a/autogen.sh b/autogen.sh index 4ec4e0551..ef3f579cb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -41,16 +41,24 @@ autoheader echo " automake: $(automake --version | head -1)" automake --add-missing -if test -z "$@"; then - args="--prefix=/usr --exec-prefix= --sysconfdir=/etc" - export CFLAGS="-g -Wall \ +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=lib/$(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=lib/$(gcc -print-multi-os-directory)" + CFLAGS="$CFLAGS -O0" else args=$@ fi echo " configure: $args" echo +export CFLAGS ./configure $args