aboutsummaryrefslogtreecommitdiff
path: root/README.svn
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2012-07-04 14:22:28 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2012-07-04 14:22:28 +0000
commita1ba2d1ca3a1d6c9c36a79a196dd3ccb83ede353 (patch)
treeae20718827f0ca6f869c0f7bdb777816d3bf5f3a /README.svn
downloadsrc-a1ba2d1ca3a1d6c9c36a79a196dd3ccb83ede353.tar.gz
src-a1ba2d1ca3a1d6c9c36a79a196dd3ccb83ede353.zip
import ldns 1.6.13vendor/ldns/1.6.13
Notes
Notes: svn path=/vendor/ldns/dist/; revision=238104 svn path=/vendor/ldns/1.6.13/; revision=238105; tag=vendor/ldns/1.6.13
Diffstat (limited to 'README.svn')
-rw-r--r--README.svn26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.svn b/README.svn
new file mode 100644
index 000000000000..10f7cb4163d1
--- /dev/null
+++ b/README.svn
@@ -0,0 +1,26 @@
+
+# The ldns subversion repository can found at:
+# www.nlnetlabs.nl/ldns/svn/
+
+# small list of commands to build all on a linux system
+# libtoolize is needed for most other targets
+
+# on Solaris, and other systems that may not have
+# the default 'automake' and 'aclocal' script aliases,
+# the correct versions may need to be set. On those
+# systems, the 'autoreconf' line should be changed to:
+# AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 autoreconf
+# (and these systems probably need gmake instead of make)
+
+# older versions of libtoolize do not support --install
+# so you might need to remove that (with newer versions
+# it is needed)
+libtoolize -c --install
+autoreconf --install
+./configure
+make
+make doc # needs doxygen for the html pages
+(cd examples && autoreconf && ./configure && make)
+(cd drill && autoreconf && ./configure && make)
+(cd pcat && autoreconf && ./configure && make)
+(cd examples/nsd-test && autoreconf && ./configure && make)