leafref bug
This commit is contained in:
parent
4742fde1e9
commit
0076a8b838
9 changed files with 91 additions and 42 deletions
41
configure
vendored
41
configure
vendored
|
|
@ -632,6 +632,7 @@ CPP
|
|||
OBJEXT
|
||||
EXEEXT
|
||||
ac_ct_CC
|
||||
with_xml_compat
|
||||
with_config_compat
|
||||
with_startup_compat
|
||||
with_keyvalue
|
||||
|
|
@ -712,6 +713,7 @@ with_keyvalue
|
|||
with_qdbm
|
||||
with_startup_compat
|
||||
with_config_compat
|
||||
with_xml_compat
|
||||
'
|
||||
ac_precious_vars='build_alias
|
||||
host_alias
|
||||
|
|
@ -1351,7 +1353,8 @@ Optional Packages:
|
|||
--with-keyvalue enable support for key-value xmldb datastore
|
||||
--with-qdbm=dir Use QDBM here, if keyvalue
|
||||
--with-startup-compat Backward compatibility of backend startup commands
|
||||
--with-config-compat Backward compatibility of ocnfiguration file
|
||||
--with-config-compat Backward compatibility of configuration file
|
||||
--with-xml-compat Backward compatibility of XML API
|
||||
|
||||
Some influential environment variables:
|
||||
CC C compiler command
|
||||
|
|
@ -2347,8 +2350,12 @@ test -n "$target_alias" &&
|
|||
|
||||
# If yes, compile apps/restconf
|
||||
# If yes, compile datastore/keyvalue
|
||||
# If yes, backward compatible backend startup
|
||||
# If yes, backward compatible .conf configuration
|
||||
# If yes, backward compatible with 3.3.2 backend startup
|
||||
|
||||
# If yes, backward compatible with 3.3.2 .conf configuration
|
||||
|
||||
# If yes, backward compatible with 3.3.3 XML api new and parse functions
|
||||
|
||||
|
||||
#
|
||||
ac_ext=c
|
||||
|
|
@ -3966,7 +3973,6 @@ fi
|
|||
echo "Using QDBM here: ${with_qdbm}"
|
||||
CPPFLAGS="-I${with_qdbm}/include ${CPPFLAGS}"
|
||||
LDFLAGS="-L${with_qdbm}/lib ${LDFLAGS}"
|
||||
|
||||
fi
|
||||
# Problem: depot.h may be in qdbm/depot.h.
|
||||
for ac_header in depot.h
|
||||
|
|
@ -4047,7 +4053,8 @@ fi
|
|||
|
||||
fi
|
||||
|
||||
# This is for backward compatibility of backend startup commands
|
||||
# This is for backward compatibility of backend startup commands in 3.3.3
|
||||
# Will be removed in 3.4.0
|
||||
|
||||
# Check whether --with-startup_compat was given.
|
||||
if test "${with_startup_compat+set}" = set; then :
|
||||
|
|
@ -4064,7 +4071,8 @@ _ACEOF
|
|||
|
||||
fi
|
||||
|
||||
# This is for backward compatibility of .conf configuration file
|
||||
# This is for backward compatibility of .conf configuration file in 3.3.3
|
||||
# Will be removed in 3.4.0
|
||||
|
||||
# Check whether --with-config_compat was given.
|
||||
if test "${with_config_compat+set}" = set; then :
|
||||
|
|
@ -4081,6 +4089,24 @@ _ACEOF
|
|||
|
||||
fi
|
||||
|
||||
# This is for backward compatibility of XML create and parse API in 3.4.0
|
||||
# Will be removed in 3.5.0
|
||||
|
||||
# Check whether --with-xml_compat was given.
|
||||
if test "${with_xml_compat+set}" = set; then :
|
||||
withval=$with_xml_compat;
|
||||
else
|
||||
with_xml_compat=no
|
||||
fi
|
||||
|
||||
if test "x${with_xml_compat}" == xyes; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define XML_COMPAT $with_xml_compat
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for crypt in -lcrypt" >&5
|
||||
$as_echo_n "checking for crypt in -lcrypt... " >&6; }
|
||||
if ${ac_cv_lib_crypt_crypt+:} false; then :
|
||||
|
|
@ -4328,9 +4354,6 @@ _ACEOF
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# See also datastore/keyvalue/Makefile in with_keyvalue clause above
|
||||
ac_config_files="$ac_config_files Makefile lib/Makefile lib/src/Makefile lib/clixon/Makefile apps/Makefile apps/cli/Makefile apps/backend/Makefile apps/netconf/Makefile apps/restconf/Makefile include/Makefile etc/Makefile etc/clixonrc example/Makefile example/docker/Makefile docker/Makefile docker/cli/Makefile docker/cli/Dockerfile docker/backend/Makefile docker/backend/Dockerfile docker/netconf/Makefile docker/netconf/Dockerfile datastore/Makefile datastore/text/Makefile yang/Makefile doc/Makefile"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue