[ospfd] Fix address qualified 'ip ospf auth' commands
[jleu-quagga.git] / README.NetBSD
blob10754815d0ea4e4134fd6504945678837629813a
1 #!/bin/sh
3 $Id$
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 ./bootstrap.sh
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