X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=m4%2Fopenvswitch.m4;h=59cc933be8bff7af18b8133c20a2cfe97f366750;hb=5ca1ba484bd9ade5116a49cf241cb98219d7d696;hp=74690115d577bd771562dc9ce3f90471aa80c7a0;hpb=a8643e447601201aabd1159966bd716e48378f97;p=sliver-openvswitch.git 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])])