forked from ipdk-io/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Derek G Foster <[email protected]>
- Loading branch information
Showing
8 changed files
with
69 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
*.so | ||
*.suo | ||
**/*.sym | ||
**/*.pc | ||
*~ | ||
*,cover | ||
.#* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
dnl OVS_CHECK_P4OVS - Process P4 options. | ||
|
||
dnl Copyright(c) 2021-2022 Intel Corporation. | ||
dnl SPDX-License-Identifier: Apache 2.0 | ||
|
||
AC_DEFUN([OVS_CHECK_P4OVS], [ | ||
AC_ARG_WITH([p4ovs], | ||
[AC_HELP_STRING([--with-p4ovs], [Build with P4 support])], | ||
[have_p4ovs=true]) | ||
AC_MSG_CHECKING([whether P4OVS is enabled]) | ||
if test "$have_p4ovs" != true || test "$with_p4ovs" = no; then | ||
AC_MSG_RESULT([no]) | ||
P4OVS_VALID=false | ||
else | ||
AC_MSG_RESULT([yes]) | ||
P4OVS_VALID=true | ||
AC_DEFINE([P4OVS], [1], [System includes P4 support.]) | ||
fi | ||
dnl export automake conditional | ||
AM_CONDITIONAL([P4OVS], test "$P4OVS_VALID" = true) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters