Patch fixes ./configure --without-kbuild --- configure.ac | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3475611..3b84fb0 100644 --- a/configure.ac +++ b/configure.ac @@ -9,11 +9,18 @@ AM_PROG_CC_C_O AC_DISABLE_STATIC AC_PROG_LIBTOOL -kbuilddir="/lib/modules/$(uname -r)/build"; AC_ARG_WITH([kbuild], AS_HELP_STRING([--with-kbuild=PATH], [Path to kernel build directory [[/lib/modules/CURRENT/build]]]), - [kbuilddir="$withval"]) + [kbuilddir="$withval"], + [kbuilddir="/lib/modules/$(uname -r)/build"]) +# +# check for --without-kbuild +# +if [[ "$kbuilddir" = no ]]; then + kbuilddir= +fi + AC_ARG_WITH([ksource],,[ksourcedir="$withval"]) AC_ARG_WITH([xtables], AS_HELP_STRING([--with-xtables=PATH], -- 1.6.5 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html