From: Enrico Scholz Date: Thu, 22 Apr 2004 20:47:58 +0000 (+0000) Subject: added 'net' API X-Git-Tag: VERSION_0_10~79 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24f876ebd5c6647995deeef8581c02d15a77115b;p=util-vserver.git added 'net' API disable 'legacy' API by default git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1504 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/configure.ac b/util-vserver/configure.ac index 5409e61..06352e0 100644 --- a/util-vserver/configure.ac +++ b/util-vserver/configure.ac @@ -133,11 +133,11 @@ dnl Check for the APIs to be used AC_MSG_CHECKING([for supported APIs]) AC_ARG_ENABLE([apis], [AC_HELP_STRING([--enable-apis=APIS], - [enable support for the given apis; possible values are: legacy,compat,v11,v13,fscompat,ALL (default: ALL)])], + [enable support for the given apis; possible values are: legacy,compat,v11,v13,fscompat,net,ALL (default: all except 'legacy')])], [], - [enable_apis=ALL]) + [enable_apis=compat,v11,v13,fscompat,net]) -test x"$enable_apis" != xALL || enable_apis='legacy,compat,v11,v13,fscompat' +test x"$enable_apis" != xALL || enable_apis='legacy,compat,v11,v13,fscompat,net' enable_api_oldproc= enable_api_olduts= old_IFS=$IFS @@ -157,6 +157,7 @@ for i in $enable_apis; do enable_api_olduts=1 ;; v13) AC_DEFINE(VC_ENABLE_API_V13, 1, [Enable support for API of vserver 1.3.x]);; + net) AC_DEFINE(VC_ENABLE_API_NET, 1, [Enable support for network context API]);; fscompat) AC_DEFINE(VC_ENABLE_API_FSCOMPAT, 1, [Enable support for filesystem compatibility API]);; *) AC_MSG_ERROR(['$i' is not a supported API]);; esac