X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=697ed919d2ef50c41534de11bba4c14343d2dfb6;hp=f088a8f5d10bd195b711a7873a50454d642dd419;hb=912541b0246ef315d4d851237483b98c9dd3f992;hpb=d4e7bda70c9ae96df91660e62b160e7ae959e43c diff --git a/autogen.sh b/autogen.sh index f088a8f5d..697ed919d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,38 +1,34 @@ #!/bin/sh -e -autoreconf -i +if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then + cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ + chmod +x .git/hooks/pre-commit && \ + echo "Activated pre-commit hook." +fi -CFLAGS="-g -Wall \ --Wmissing-declarations -Wmissing-prototypes \ --Wnested-externs -Wpointer-arith \ --Wpointer-arith -Wsign-compare -Wchar-subscripts \ --Wstrict-prototypes -Wshadow" -args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux" -libdir=$(basename $(cd /lib/$(gcc -print-multi-os-directory); pwd)) +gtkdocize +autoreconf --install --symlink -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 +libdir() { + echo $(cd $1/$(gcc -print-multi-os-directory); pwd) +} + +args="\ +--prefix=/usr \ +--with-rootprefix= \ +--sysconfdir=/etc \ +--bindir=/sbin \ +--libdir=$(libdir /usr/lib) \ +--with-rootlibdir=$(libdir /lib) \ +--libexecdir=/lib \ +--with-systemdsystemunitdir=/lib/systemd/system \ +--with-selinux \ +--enable-gtk-doc" + +echo +echo "----------------------------------------------------------------" +echo "Initialized build system. For a common configuration please run:" +echo "----------------------------------------------------------------" +echo +echo "./configure CFLAGS='-g -O0' $args" +echo