xref: /freebsd/contrib/ldns/README.git (revision 09a53ad8f1318c5daae6cfb19d97f4f6459f0013)
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)
16libtoolize -c --install
17autoreconf --install
18./configure --with-examples --with-drill # --with-pyldns --with-p5-dns-ldns
19make
20make doc  # needs doxygen for the html pages
21(cd pcat && autoreconf && ./configure && make)
22(cd examples/nsd-test && autoreconf && ./configure && make)
23