[ospfd] Raise ExchangeDone earlier, avoid often needless round of DD packets
[jleu-quagga.git] / README.NetBSD
blobe859728a837a6d6d16037a13f750e0d691cb2196
1 #!/bin/sh
3 $Id: README.NetBSD,v 1.1 2005/12/29 15:40:49 gdt Exp $
5 # This file is helpful for building quagga from cvs on NetBSD, and
6 # probably on any system using pkgsrc.
7 # One should have readline installed already (pkgsrc/devel/readline).
9 case $1 in
11 build)
12 autoreconf -i -s
13 LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
14 ./configure --prefix=/usr/quagga \
15 --sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \
16 --enable-exampledir=/usr/quagga/share/examples/zebra \
17 --enable-pkgsrcrcdir=/usr/quagga/etc/rc.d \
18 --enable-opaque-lsa --enable-vtysh
19 make
22 install)
23 make install
26 clean)
27 make clean
29 esac