pkgsrc-wip/zebra-pj/patches/patch-ah
Greg Troxel 556d571764 Paul Jakma's patched version of zebra (still GPL of course).
zebra is a routing daemon implementing BGP, OSPF, RIPng, and OSPFv3,
among others, using a multi-process architecture.

This pkgsrc dir is intended to be used instead of net/zebra, and is
marked to conflict with it.  (The most recent released upstream source
for net/zebra is out of date and is missing some critical patches.)
2003-04-29 14:36:53 +00:00

16 lines
638 B
Text

$NetBSD: patch-ah,v 1.1.1.1 2003/04/29 14:36:54 lexort Exp $
--- configure.ac.orig Sun Mar 2 16:19:26 2003
+++ configure.ac
@@ -200,7 +200,10 @@ dnl ---------------------
case "${enable_vtysh}" in
"yes") VTYSH="vtysh";
AC_DEFINE(VTYSH,,VTY shell)
- AC_CHECK_LIB(tinfo, tputs, , AC_CHECK_LIB(ncurses, tputs))
+ AC_CHECK_LIB(termcap, tputs, ,
+ AC_CHECK_LIB(tinfo, tputs, ,
+ AC_CHECK_LIB(curses, tputs, ,
+ AC_CHECK_LIB(ncurses, tputs))))
AC_CHECK_LIB(readline, main)
if test $ac_cv_lib_readline_main = no; then
AC_MSG_ERROR([vtysh needs libreadline but was not found on your system.])