From 1a8e2a697ff5513907a767a327d1e363b789f73a Mon Sep 17 00:00:00 2001 From: "Keith Burns (alagalah)" Date: Fri, 13 May 2016 09:31:35 -0700 Subject: NSHSFC-1 Initial move from VPP to NSH_SFC - API is giving me some negative energy currently -- I'll work it out but wanted to publish both VPP-61 and this simultaneously Change-Id: I4a04b56dd470655114605621d0c44ea3c26bc069 Signed-off-by: Keith Burns (alagalah) Signed-off-by: Ed Warnicke --- nsh-plugin/configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 nsh-plugin/configure.ac (limited to 'nsh-plugin/configure.ac') diff --git a/nsh-plugin/configure.ac b/nsh-plugin/configure.ac new file mode 100644 index 0000000..46e8faf --- /dev/null +++ b/nsh-plugin/configure.ac @@ -0,0 +1,18 @@ + +AC_INIT(nsh_plugin, 1.0) +AM_INIT_AUTOMAKE + +AC_PROG_LIBTOOL +AM_PROG_AS +AC_PROG_CC +AM_PROG_CC_C_O + +AC_ARG_WITH(plugin-toolkit, + AC_HELP_STRING([--with-plugin-toolkit], + [build using the vpp toolkit]), + [with_plugin_toolkit=${prefix}/include], + [with_plugin_toolkit=.]) + +AC_SUBST(TOOLKIT_INCLUDE,[${with_plugin_toolkit}]) +AM_CONDITIONAL(WITH_PLUGIN_TOOLKIT, test "$with_plugin_toolkit" != ".") +AC_OUTPUT([Makefile]) -- cgit 1.2.3-korg