X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=acinclude.m4;h=d33a7c45a689df02d0c55e094732ef72020963e6;hb=8cdaca99b5742489c35b1cac6e39791a47451952;hp=2f38997ff0b85920cb8180d50e78c6207605de70;hpb=4d678233e981fa319a338f6b0949e9dc625941a4;p=sliver-openvswitch.git diff --git a/acinclude.m4 b/acinclude.m4 index 2f38997ff..d33a7c45a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1,6 +1,6 @@ # -*- autoconf -*- -# Copyright (c) 2008, 2009 Nicira Networks. +# Copyright (c) 2008, 2009, 2010 Nicira Networks. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,41 +14,69 @@ # See the License for the specific language governing permissions and # limitations under the License. -dnl OVS_CHECK_LINUX(OPTION, VERSION, VARIABLE, CONDITIONAL) +dnl OVS_CHECK_LINUX26 dnl dnl Configure linux kernel source tree -AC_DEFUN([OVS_CHECK_LINUX], [ - AC_ARG_WITH([$1], - [AC_HELP_STRING([--with-$1=/path/to/linux-$2], - [Specify the linux $2 kernel sources])], - [path="$withval"], [path=])dnl - if test -n "$path"; then - path=`eval echo "$path"` - - AC_MSG_CHECKING([for $path directory]) - if test -d "$path"; then - AC_MSG_RESULT([yes]) - $3=$path - AC_SUBST($3) +AC_DEFUN([OVS_CHECK_LINUX26], [ + AC_ARG_WITH([l26], + [AC_HELP_STRING([--with-l26=/path/to/linux-2.6], + [Specify the linux 2.6 kernel sources])], + [KBUILD26="$withval"], [KBUILD26=])dnl + if test -n "$KBUILD26"; then + KBUILD26=`eval echo "$KBUILD26"` + + # The build directory is what the user provided. + # Make sure that it exists. + AC_MSG_CHECKING([for Linux 2.6 build directory]) + if test -d "$KBUILD26"; then + AC_MSG_RESULT([$KBUILD26]) + AC_SUBST(KBUILD26) else AC_MSG_RESULT([no]) - AC_ERROR([source dir $path doesn't exist]) + AC_ERROR([source dir $KBUILD26 doesn't exist]) + fi + + # Debian breaks kernel headers into "source" header and "build" headers. + # We want the source headers, but $KBUILD26 gives us the "build" headers. + # Use heuristics to find the source headers. + AC_MSG_CHECKING([for Linux 2.6 source directory]) + KSRC26=$KBUILD26 + if test ! -e $KSRC26/include/linux/kernel.h; then + case `echo "$KBUILD26" | sed 's,/*$,,'` in # ( + */build) + KSRC26=`echo "$KBUILD26" | sed 's,/build/*$,/source,'` + ;; # ( + *) + KSRC26=`(cd $KBUILD26 && pwd -P) | sed 's,-[[^-]]*$,-common,'` + ;; + esac + if test ! -e $KSRC26/include/linux/kernel.h; then + AC_MSG_ERROR([cannot find source directory]) + fi fi + AC_MSG_RESULT([$KSRC26]) - AC_MSG_CHECKING([for $path kernel version]) - patchlevel=`sed -n 's/^PATCHLEVEL = //p' "$path/Makefile"` - sublevel=`sed -n 's/^SUBLEVEL = //p' "$path/Makefile"` + AC_MSG_CHECKING([for kernel version]) + patchlevel=`sed -n 's/^PATCHLEVEL = //p' "$KSRC26/Makefile"` + sublevel=`sed -n 's/^SUBLEVEL = //p' "$KSRC26/Makefile"` + if test -z "$patchlevel" || test -z "$sublevel"; then + AC_ERROR([cannot determine kernel version]) + fi AC_MSG_RESULT([2.$patchlevel.$sublevel]) - if test "2.$patchlevel" != '$2'; then - AC_ERROR([Linux kernel source in $path is not version $2]) + if test "2.$patchlevel" != '2.6'; then + if test "$BUILD26" = "$KSRC26"; then + AC_ERROR([Linux kernel in $KBUILD26 is not version 2.6]) + else + AC_ERROR([Linux kernel in build tree $KBUILD26 (source tree $KSRC26) is not version 2.6]) + fi fi - if ! test -e "$path"/include/linux/version.h || \ - ! test -e "$path"/include/linux/autoconf.h; then - AC_MSG_ERROR([Linux kernel source in $path is not configured]) + if ! test -e "$KBUILD26"/include/linux/version.h || \ + ! test -e "$KBUILD26"/include/linux/autoconf.h; then + AC_MSG_ERROR([Linux kernel source in $KBUILD26 is not configured]) fi - m4_if($2, [2.6], [OVS_CHECK_LINUX26_COMPAT]) + OVS_CHECK_LINUX26_COMPAT fi - AM_CONDITIONAL($4, test -n "$path") + AM_CONDITIONAL(L26_ENABLED, test -n "$KBUILD26") ]) dnl OVS_GREP_IFELSE(FILE, REGEX, IF-MATCH, IF-NO-MATCH) @@ -90,6 +118,16 @@ AC_DEFUN([OVS_CHECK_VETH], [ fi ]) +AC_DEFUN([OVS_CHECK_GRE], [ + AC_MSG_CHECKING([whether to build gre module]) + if test "$sublevel" -ge 18; then + AC_MSG_RESULT([yes]) + AC_SUBST([BUILD_GRE], 1) + else + AC_MSG_RESULT([no]) + fi +]) + AC_DEFUN([OVS_CHECK_LOG2_H], [ AC_MSG_CHECKING([for $KSRC26/include/linux/log2.h]) if test -e $KSRC26/include/linux/log2.h; then @@ -103,11 +141,13 @@ AC_DEFUN([OVS_CHECK_LOG2_H], [ dnl OVS_CHECK_LINUX26_COMPAT dnl dnl Runs various Autoconf checks on the Linux 2.6 kernel source in -dnl the directory in $KSRC26. +dnl the directory in $KBUILD26. AC_DEFUN([OVS_CHECK_LINUX26_COMPAT], [ rm -f datapath/linux-2.6/kcompat.h.new mkdir -p datapath/linux-2.6 : > datapath/linux-2.6/kcompat.h.new + OVS_GREP_IFELSE([$KSRC26/include/linux/types.h], [bool], + [OVS_DEFINE([HAVE_BOOL_TYPE])]) OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [skb_transport_header], [OVS_DEFINE([HAVE_SKBUFF_HEADER_HELPERS])]) OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [raw], @@ -119,8 +159,24 @@ AC_DEFUN([OVS_CHECK_LINUX26_COMPAT], [ [OVS_DEFINE([HAVE_NLA_NUL_STRING])]) OVS_GREP_IFELSE([$KSRC26/include/linux/err.h], [ERR_CAST], [OVS_DEFINE([HAVE_ERR_CAST])]) + OVS_GREP_IFELSE([$KSRC26/include/net/checksum.h], [csum_unfold], + [OVS_DEFINE([HAVE_CSUM_UNFOLD])]) + OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [skb_cow], + [OVS_DEFINE([HAVE_SKB_COW])]) + OVS_GREP_IFELSE([$KSRC26/include/net/netlink.h], [nla_get_be16], + [OVS_DEFINE([HAVE_NLA_GET_BE16])]) + OVS_GREP_IFELSE([$KSRC26/include/linux/in.h], [ipv4_is_multicast], + [OVS_DEFINE([HAVE_IPV4_IS_MULTICAST])]) + # Check for the proto_data_valid member in struct sk_buff. The [^@] + # is necessary because some versions of this header remove the + # member but retain the kerneldoc comment that describes it (which + # starts with @). The brackets must be doubled because of m4 + # quoting rules. + OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [[[^@]]proto_data_valid], + [OVS_DEFINE([HAVE_PROTO_DATA_VALID])]) OVS_CHECK_LOG2_H OVS_CHECK_VETH + OVS_CHECK_GRE if cmp -s datapath/linux-2.6/kcompat.h.new \ datapath/linux-2.6/kcompat.h >/dev/null 2>&1; then rm datapath/linux-2.6/kcompat.h.new @@ -190,7 +246,7 @@ AC_DEFUN([OVS_CHECK_CC_OPTION], AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,)], [ovs_cv_name[]=yes], [ovs_cv_name[]=no]) CFLAGS="$ovs_save_CFLAGS"]) if test $ovs_cv_name = yes; then - m4_if([$2], [], [;], [$2]) + m4_if([$2], [], [:], [$2]) else m4_if([$3], [], [:], [$3]) fi @@ -198,8 +254,9 @@ AC_DEFUN([OVS_CHECK_CC_OPTION], dnl OVS_ENABLE_OPTION([OPTION]) dnl Check whether the given C compiler OPTION is accepted. -dnl If so, add it to CFLAGS. +dnl If so, add it to WARNING_FLAGS. dnl Example: OVS_ENABLE_OPTION([-Wdeclaration-after-statement]) AC_DEFUN([OVS_ENABLE_OPTION], - [OVS_CHECK_CC_OPTION([$1], [CFLAGS="$CFLAGS $1"])]) + [OVS_CHECK_CC_OPTION([$1], [WARNING_FLAGS="$WARNING_FLAGS $1"]) + AC_SUBST([WARNING_FLAGS])]) dnl ----------------------------------------------------------------------