X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=e41bae05cfa0d7ee7defe595f02877221cdaf199;hp=fb96d4aeb133885478915ac494739ee3ed712cae;hb=fc04059abfc5d1fa9bfe9afb15ca03017a26fb56;hpb=9dc4a84a255107cb9eea906e1de3f546c26bc55c diff --git a/autogen.sh b/autogen.sh index fb96d4aeb..e41bae05c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,6 @@ #!/bin/sh -e +gtkdocize autoreconf --install --symlink CFLAGS="-g -Wall \ @@ -8,32 +9,11 @@ CFLAGS="-g -Wall \ -Wpointer-arith -Wsign-compare -Wchar-subscripts \ -Wstrict-prototypes -Wshadow \ -Wformat=2 -Wtype-limits" -args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux" -libdir=$(basename $(cd /lib/$(gcc -print-multi-os-directory); pwd)) -case "$1" in - *install|"") - args="$args --with-libdir-name=$libdir" - export CFLAGS="$CFLAGS -O2" - echo " configure: $args" - echo - ./configure $args - ;; - *devel) - args="$args --enable-debug --with-libdir-name=$libdir" - export CFLAGS="$CFLAGS -O0" - echo " configure: $args" - echo - ./configure $args - ;; - *clean) - ./configure - make maintainer-clean - git clean -f -X - exit 0 - ;; - *) - echo "Usage: $0 [--install|--devel|--clean]" - exit 1 - ;; -esac +libdirname=$(basename $(cd /lib/$(gcc -print-multi-os-directory); pwd)) +args="--prefix=/usr --exec-prefix= --sysconfdir=/etc \ +--libdir=/usr/$libdirname --with-libdir-name=$libdirname \ +--with-selinux --enable-gtk-doc --enable-extras" + +export CFLAGS="$CFLAGS -O2" +./configure $args $@