File: README

package info (click to toggle)
pdns-recursor 3.1.4-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 840 kB
  • ctags: 1,918
  • sloc: cpp: 9,746; ansic: 3,019; sh: 452; makefile: 123
file content (76 lines) | stat: -rw-r--r-- 1,891 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
DOCUMENTATION
-------------
For full details, please read:

               http://doc.powerdns.com/built-in-recursor.html

COMPILING
---------

$ ./configure
$ make or gmake

The only dependency is Boost, http://boost.org/
You only need to download it, there is no need to compile.

On most modern UNIX distributions, you can simply install 'boost' or
'boost-dev' or 'boost-devel'. If you don't have that option, or don't want
to use it, try:

1) head to http://sourceforge.net/project/showfiles.php?group_id=7586 and
download the latest boost tar.bz2 or tar.gz, perhaps from:
http://surfnet.dl.sourceforge.net/sourceforge/boost/boost_1_33_1.tar.bz2
(use the first link if this one doesn't work)

2) untar it:

$ tar xjf boost_1_33_1.tar.bz2

3) Compile the PowerDNS recursor using:

$ CXXFLAGS=-I./boost_1_33_1/ ./configure
$ CXXFLAGS=-I./boost_1_33_1/ make clean 
$ CXXFLAGS=-I./boost_1_33_1/ make all
(the 'clean' is needed to have make pick up the new boost)

4) Run ./pdns_recursor and you should be set!

5) (g)make install

PLATFORM SPECIFIC NOTES
-----------------------
When compiling on Solaris, use:
$ CPPFLAGS=-DSOLARIS8 ... gmake 

where ... stands for any possible CXXFLAGS or PROFILEFLAGS, see below.

PERFORMANCE
-----------

For the utmost in performance, compile like this:

   $ PROFILEFLAGS=-fprofile-generate make

Then run the program for a bit, in as much of a real-life setting as you
have available. Then run:

   $ rec_control quit
   bye 

Then do:

   $ PROFILEFLAGS=-fprofile-use make clean all

The resulting binary is up to 20% faster in our tests.

Do run with g++ 4.1 if you can, it is the best.

RUNNING ON A DIFFERENT MACHINE
------------------------------
To prevent hassles with g++ 4.1 dependencies, you can build like this:
   $ STATIC=semi make all

PROBLEMS
--------
If you have problems linking, try removing the GCC_SKIP_LOCKING line from
config.h