]> git.pld-linux.org Git - packages/xtables-addons.git/blob - kernelrelease.patch
- release 8
[packages/xtables-addons.git] / kernelrelease.patch
1 --- xtables-addons-1.31/configure.ac~   2010-12-02 22:13:08.366366978 +0100
2 +++ xtables-addons-1.31/configure.ac    2010-12-02 22:14:14.780561896 +0100
3 @@ -39,47 +39,6 @@
4         -Winline -pipe -DXTABLES_LIBDIR=\\\"\${xtlibdir}\\\" \
5         -I\${XA_TOPSRCDIR}/include";
6  
7 -#
8 -# check kernel version
9 -#
10 -if grep -q "CentOS release 5\." /etc/redhat-release 2>/dev/null ||
11 -    grep -q "Red Hat Enterprise Linux Server release 5" /etc/redhat-release 2>/dev/null; then
12 -       # γ—γΎγ£γŸ!
13 -       # Well, just a warning. Maybe the admin updated the kernel.
14 -       echo "WARNING: This distribution's shipped kernel is not supported.";
15 -fi;
16 -AC_MSG_CHECKING([kernel version that we will build against])
17 -krel="$(make -sC ${kbuilddir} kernelrelease)";
18 -krel="${krel%%-*}";
19 -kmajor="${krel%%.*}";
20 -krel="${krel#*.}";
21 -kminor="${krel%%.*}";
22 -krel="${krel#*.}";
23 -kmicro="${krel%%.*}";
24 -if test "$kmicro" = "$krel"; then
25 -       kmicro="$(($kmicro+0))"; # Get rid of non numbers ("2.6.36+" -> "2.6.36")
26 -       kstable=0;
27 -else
28 -       kmicro="$(($kmicro+0))";
29 -       kstable="${krel#*.}";
30 -       kstable="$(($kstable+0))";
31 -fi;
32 -if test -z "$kmajor" -o -z "$kminor" -o -z "$kmicro"; then
33 -       echo "WARNING: Version detection did not succeed. Continue at own luck.";
34 -else
35 -       echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
36 -       if test "$kmajor" -gt 2 -o "$kminor" -gt 6 -o "$kmicro" -gt 36; then
37 -               echo "WARNING: You are trying a newer kernel. Results may vary. :-)";
38 -       elif test \( "$kmajor" -lt 2 -o \
39 -           \( "$kmajor" -eq 2 -a "$kminor" -lt 6 \) -o \
40 -           \( "$kmajor" -eq 2 -a "$kminor" -eq 0 -a "$kmicro" -lt 17 \) -o \
41 -           \( "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -eq 18 -a \
42 -           "$kstable" -lt 5 \) \); then
43 -               echo "ERROR: That kernel version is not supported. Please see INSTALL for minimum configuration.";
44 -               exit 1;
45 -       fi;
46 -fi;
47 -
48  AC_SUBST([regular_CFLAGS])
49  AC_SUBST([kbuilddir])
50  AC_SUBST([xtlibdir])
This page took 0.047567 seconds and 3 git commands to generate.