autoreconf: Regenerate after changing configure.ac
This commit is contained in:
parent
7539aacc36
commit
8caaef639e
2 changed files with 25 additions and 0 deletions
22
configure
vendored
22
configure
vendored
|
|
@ -755,6 +755,7 @@ enable_debug
|
||||||
with_cligen
|
with_cligen
|
||||||
enable_yang_patch
|
enable_yang_patch
|
||||||
enable_publish
|
enable_publish
|
||||||
|
with_restconf_netns
|
||||||
with_restconf
|
with_restconf
|
||||||
enable_http1
|
enable_http1
|
||||||
enable_nghttp2
|
enable_nghttp2
|
||||||
|
|
@ -1417,6 +1418,9 @@ Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
||||||
--with-cligen=dir Use CLIGEN installation in this dir
|
--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=native Integration with embedded web server (DEFAULT)
|
||||||
--with-restconf=fcgi FCGI interface for stand-alone web rev-proxy eg
|
--with-restconf=fcgi FCGI interface for stand-alone web rev-proxy eg
|
||||||
nginx
|
nginx
|
||||||
|
|
@ -6112,6 +6116,24 @@ else $as_nop
|
||||||
fi
|
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:
|
# This is for restconf. There are three options:
|
||||||
# --without-restconf No restconf support
|
# --without-restconf No restconf support
|
||||||
# --with-restconf=fcgi FCGI interface for separate web reverse proxy like nginx
|
# --with-restconf=fcgi FCGI interface for separate web reverse proxy like nginx
|
||||||
|
|
|
||||||
|
|
@ -156,6 +156,9 @@
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#undef PACKAGE_VERSION
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
/* Default restconf network namespace */
|
||||||
|
#undef RESTCONF_NETNS_DEFAULT
|
||||||
|
|
||||||
/* SSH binary */
|
/* SSH binary */
|
||||||
#undef SSH_BIN
|
#undef SSH_BIN
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue