blob: bef7ba5ae652a41fa6af8d176f4e49be9ed51287 [file] [log] [blame]
AC_INIT(module-init-tools,3.7-pre2)
AC_CANONICAL_SYSTEM
# Use -no-portability since we're never going to use module-init-tools on
# non-Linux systems and it's reasonable to expect GNU-compatibility here.
AM_INIT_AUTOMAKE([-Wno-portability])
# If zlib is required, libz must be linked static, modprobe is in
# /sbin, libz is in /usr/lib and may not be available when it is run.
AC_ARG_ENABLE(zlib,
[ --enable-zlib Handle gzipped modules],
[if test "$enableval" = "yes"; then
AC_DEFINE(CONFIG_USE_ZLIB)
zlib_flags="-Wl,-Bstatic -lz -Wl,-Bdynamic"
fi])
AC_PROG_CC
# Delay adding the zlib_flags until after AC_PROG_CC, so we can distinguish
# between a broken cc and a working cc but missing libz.a.
LDADD="$LDADD $zlib_flags"
AC_SUBST(LDADD)
case $target in
*-*-linux*) ;;
*) AC_MSG_ERROR([Linux only, dude!]);;
esac
# Thanks to Martin Pool
if test x"$GCC" = xyes
then
CFLAGS="$CFLAGS -Wunused -Wall"
AC_MSG_NOTICE([Adding gcc options: $CFLAGS])
fi
AC_ARG_WITH(moddir,
[ --with-moddir=path Give the path for system modules directory.]
[ [ Defaults to /lib/modules ]],
[if test ! -z "$withval"; then
MODULE_DIR="\\\"$withval/\\\""
CFLAGS="$CFLAGS -DMODULE_DIR=$MODULE_DIR"
fi])
AC_SUBST(MODULE_DIR)
AC_OUTPUT([Makefile])