summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2012-12-27 13:48:51 -0800
committerPravin B Shelar <pshelar@nicira.com>2012-12-27 13:48:51 -0800
commit5ca1ba484bd9ade5116a49cf241cb98219d7d696 (patch)
tree8ce8e1ffc4fa5f606ce84b5700cca18f890a84a7 /m4
parenta8643e447601201aabd1159966bd716e48378f97 (diff)
downloadopenvswitch-5ca1ba484bd9ade5116a49cf241cb98219d7d696.tar.gz
openvswitch: Remove Linux bridge compatibility.
Currently brcompat does not work on master due to recent datapath changes. We have decided to remove it as it is not used very widely. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'm4')
-rw-r--r--m4/openvswitch.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4
index 74690115d..59cc933be 100644
--- a/m4/openvswitch.m4
+++ b/m4/openvswitch.m4
@@ -390,23 +390,3 @@ AC_DEFUN([OVS_CHECK_GROFF],
ovs_cv_groff=no
fi])
AM_CONDITIONAL([HAVE_GROFF], [test "$ovs_cv_groff" = yes])])
-
-dnl Checks for --disable-brcompat and undefines BUILD_BRCOMPAT if it is specified.
-AC_DEFUN([OVS_CHECK_BRCOMPAT],
- [AC_ARG_ENABLE(
- [brcompat],
- [AC_HELP_STRING([--disable-brcompat],
- [Disable building brcompat])],
- [case "${enableval}" in
- (yes) brcompat=true ;;
- (no) brcompat=false ;;
- (*) AC_MSG_ERROR([bad value ${enableval} for --enable-brcompat]) ;;
- esac],
- [brcompat=true])
- if test x$brcompat = xtrue; then
- BUILD_BRCOMPAT=yes
- else
- BUILD_BRCOMPAT=""
- fi
- AC_SUBST([BUILD_BRCOMPAT])
- AM_CONDITIONAL([BUILD_BRCOMPAT], [test x$brcompat = xtrue])])