]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ldns/README.git
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / ldns / README.git
1 # The ldns git repository can found at:
2 # git.nlnetlabs.nl/ldns/
3
4 # small list of commands to build all on a linux system
5 # libtoolize is needed for most other targets
6
7 # on Solaris, and other systems that may not have
8 # the default 'automake' and 'aclocal' script aliases,
9 # the correct versions may need to be set. On those
10 # systems, the 'autoreconf' line should be changed to:
11 # AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 autoreconf
12
13 # older versions of libtoolize do not support --install
14 # so you might need to remove that (with newer versions
15 # it is needed)
16 libtoolize -c --install
17 autoreconf --install
18 ./configure --with-examples --with-drill # --with-pyldns --with-p5-dns-ldns
19 make
20 make doc  # needs doxygen for the html pages
21 (cd pcat && autoreconf && ./configure && make)
22 (cd examples/nsd-test && autoreconf && ./configure && make)