mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 13:15:12 +02:00
build: improve detection of kernel version and error handling
Thanks to Arkadiusz Miskiewicz from PLD for reporting. make: *** kernelrelease: No such file or directory. Stop. Found kernel version "...0" in ERROR: That kernel version is not supported. Please see INSTALL for minimum configuration.
This commit is contained in:
23
configure.ac
23
configure.ac
@@ -46,6 +46,7 @@ if grep -q "CentOS release 5\." /etc/redhat-release 2>/dev/null ||
|
|||||||
# Well, just a warning. Maybe the admin updated the kernel.
|
# Well, just a warning. Maybe the admin updated the kernel.
|
||||||
echo "WARNING: This distribution's shipped kernel is not supported.";
|
echo "WARNING: This distribution's shipped kernel is not supported.";
|
||||||
fi;
|
fi;
|
||||||
|
AC_MSG_CHECKING([kernel version that we will build against])
|
||||||
krel="$(make -sC ${kbuilddir} kernelrelease)";
|
krel="$(make -sC ${kbuilddir} kernelrelease)";
|
||||||
krel="${krel%%-*}";
|
krel="${krel%%-*}";
|
||||||
kmajor="${krel%%.*}";
|
kmajor="${krel%%.*}";
|
||||||
@@ -61,14 +62,20 @@ else
|
|||||||
kstable=0;
|
kstable=0;
|
||||||
fi;
|
fi;
|
||||||
fi;
|
fi;
|
||||||
echo "Found kernel version $kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
|
if test -z "$kmajor" -o -z "$kminor" -o -z "$kmicro"; then
|
||||||
if test "$kmajor" -gt 2 -o "$kminor" -gt 6 -o "$kmicro" -gt 36; then
|
echo "WARNING: Version detection did not succeed. Continue at own luck.";
|
||||||
echo "WARNING: You are trying a newer kernel. Results may vary. :-)";
|
else
|
||||||
elif test \( "$kmajor" -lt 2 -o "$kminor" -lt 6 -o "$kmicro" -lt 17 \) -o \
|
echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
|
||||||
\( "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -eq 18 -a \
|
if test "$kmajor" -gt 2 -o "$kminor" -gt 6 -o "$kmicro" -gt 36; then
|
||||||
"$kstable" -lt 5 \); then
|
echo "WARNING: You are trying a newer kernel. Results may vary. :-)";
|
||||||
echo "ERROR: That kernel version is not supported. Please see INSTALL for minimum configuration.";
|
elif test \( "$kmajor" -lt 2 -o \
|
||||||
exit 1;
|
\( "$kmajor" -eq 2 -a "$kminor" -lt 6 \) -o \
|
||||||
|
\( "$kmajor" -eq 2 -a "$kminor" -eq 0 -a "$kmicro" -lt 17 \) -o \
|
||||||
|
\( "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -eq 18 -a \
|
||||||
|
"$kstable" -lt 5 \) \); then
|
||||||
|
echo "ERROR: That kernel version is not supported. Please see INSTALL for minimum configuration.";
|
||||||
|
exit 1;
|
||||||
|
fi;
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
AC_SUBST([regular_CFLAGS])
|
AC_SUBST([regular_CFLAGS])
|
||||||
|
Reference in New Issue
Block a user