autoreconf: Regenerate after changing configure.ac

This commit is contained in:
Renato Botelho do Couto 2023-07-06 14:53:08 +00:00 committed by Olof Hagsand
parent 7539aacc36
commit 8caaef639e
2 changed files with 25 additions and 0 deletions

22
configure vendored
View file

@ -755,6 +755,7 @@ enable_debug
with_cligen
enable_yang_patch
enable_publish
with_restconf_netns
with_restconf
enable_http1
enable_nghttp2
@ -1417,6 +1418,9 @@ Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-cligen=dir Use CLIGEN installation in this dir
--with-restconf-netns=NAMESPACE
Define default restconf network namespace to
NAMESPACE
--with-restconf=native Integration with embedded web server (DEFAULT)
--with-restconf=fcgi FCGI interface for stand-alone web rev-proxy eg
nginx
@ -6112,6 +6116,24 @@ else $as_nop
fi
# Check whether --with-restconf-netns was given.
if test ${with_restconf_netns+y}
then :
withval=$with_restconf_netns; restconf_netns="$withval"
else $as_nop
restconf_netns="default"
fi
if test -z "$restconf_netns"; then
as_fn_error $? "restconf-netns cannot be empty" "$LINENO" 5
fi
printf "%s\n" "#define RESTCONF_NETNS_DEFAULT \"$restconf_netns\"" >>confdefs.h
# This is for restconf. There are three options:
# --without-restconf No restconf support
# --with-restconf=fcgi FCGI interface for separate web reverse proxy like nginx