2008-07-30 03:45:23 +04:00
#!/bin/sh -e
( autoconf --version) < /dev/null > /dev/null 2>& 1 || {
echo
echo "You must have autoconf installed to generate the build system."
echo
exit 1
}
( libtoolize --version) < /dev/null > /dev/null 2>& 1 || {
echo
echo "You must have libtool installed to generate the build system."
echo
exit 1
}
( autoheader --version) < /dev/null > /dev/null 2>& 1 || {
echo
echo "You must have autoheader installed to generate the build system."
echo
exit 1
}
( automake --version) < /dev/null > /dev/null 2>& 1 || {
echo
echo "You must have automake installed to generate the build system."
echo
exit 1
}
test -f udev/udevd.c || {
echo "You must run this script in the top-level source directory"
exit 1
}
echo " aclocal: $( aclocal --version | head -1) "
aclocal
echo " autoconf: $( autoconf --version | head -1) "
autoconf
echo " libtool: $( automake --version | head -1) "
libtoolize --force
echo " autoheader: $( autoheader --version | head -1) "
autoheader
echo " automake: $( automake --version | head -1) "
automake --add-missing
2008-11-01 22:57:22 +03:00
CFLAGS = " -g -Wall \
2008-08-12 13:19:32 +04:00
-Wmissing-declarations -Wmissing-prototypes \
-Wnested-externs -Wpointer-arith \
-Wpointer-arith -Wsign-compare -Wchar-subscripts \
-Wstrict-prototypes -Wshadow"
2008-11-01 22:57:22 +03:00
if test -z " $1 " -o " $1 " = "install" ; then
args = "--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux"
2008-11-18 05:52:05 +03:00
args = " $args --with-libdir-name=lib/ $( gcc -print-multi-os-directory) "
2008-11-01 22:57:22 +03:00
CFLAGS = " $CFLAGS -O2 "
elif test " $1 " = "devel" ; then
args = "--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux --enable-debug"
2008-11-18 05:52:05 +03:00
args = " $args --with-libdir-name=lib/ $( gcc -print-multi-os-directory) "
2008-11-01 22:57:22 +03:00
CFLAGS = " $CFLAGS -O0 "
2008-07-30 03:45:23 +04:00
else
args = $@
fi
echo " configure: $args "
echo
2008-11-01 22:57:22 +03:00
export CFLAGS
2008-07-30 03:45:23 +04:00
./configure $args