chiark / gitweb /
scsi_id: make sure, we do not have slashes in values
[elogind.git] / autogen.sh
index b01012eb2efd9d9a98bc30d43dbf913ba457028a..ef3f579cbd3a200f3c86dedd19b5c2edeea6b284 100755 (executable)
@@ -1,11 +1,5 @@
 #!/bin/sh -e
 
-(autopoint --version) < /dev/null > /dev/null 2>&1 || {
-       echo
-       echo "You must have autopoint installed to generate the build system.."
-       echo
-       exit 1
-}
 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
        echo
        echo "You must have autoconf installed to generate the build system."
@@ -47,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=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