diff options
author | andreas <andreas@FreeBSD.org> | 2001-03-22 22:31:17 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 2001-03-22 22:31:17 +0000 |
commit | a5a0ac46bc92afc6d95921f8666498cc311600c7 (patch) | |
tree | f08511e5682a6fa2025f7163b1f36ecae341c675 /net/zebra/scripts | |
parent | 798406fca4553d3d7988b98eb33937bdd3c0dafa (diff) | |
download | FreeBSD-ports-a5a0ac46bc92afc6d95921f8666498cc311600c7.zip FreeBSD-ports-a5a0ac46bc92afc6d95921f8666498cc311600c7.tar.gz |
update to new zebra 0.91a
- some workarounds concerning installation of zebra info files
since sources doesn't contain all info files...
- modified zebractl script to check, if zebra.conf exists, which
is needed for every routing protocol, error message and exit if not found.
From the author:
"0.91 is basically a bugfix release. All of IPv6 codes are based upon
new RIB codes"
Bugfixes and features see ChangeLog file.
Diffstat (limited to 'net/zebra/scripts')
-rw-r--r-- | net/zebra/scripts/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/zebra/scripts/configure b/net/zebra/scripts/configure index e5bb2a6..f2a02dc 100644 --- a/net/zebra/scripts/configure +++ b/net/zebra/scripts/configure @@ -17,6 +17,7 @@ Select compile time options for zebra port:" -1 -1 8 \ LIBPAM "enable PAM authentication for vtysh" OFF \ OSPF_NSSA "turn on undergoing NSSA feature" OFF \ SNMP "enable SNMP support" OFF \ +TCP-ZEBRA "enable TCP/IP socket connection" OFF \ 2> /tmp/zebra-checklist.$$ retval=$? @@ -50,6 +51,9 @@ while [ "$1" ]; do \"SNMP\") echo CONFIGURE_ARGS+=--enable-snmp ;; + \"TCP-ZEBRA\") + echo CONFIGURE_ARGS+=--enable-tcp-zebra + ;; esac shift done |