DOCUMENTATION
-------------
For full details, please read:

	https://doc.powerdns.com/md/recursor/

Here follow some brief notes that may be useful to get you going.

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'. Otherwise, just download boost, and point the
compiler at the right directory using CPPFLAGS.

OPTIONAL LUA SCRIPTING
----------------------
To benefit from Lua scripting, as described on
http://doc.powerdns.com/recursor-scripting.html please compile like this:

$ LUA=1 ./configure ; LUA=1 (g)make

or even

$ LUA=1 LUA_CPPFLAGS_CONFIG=-I/usr/local/include/lua5.1 LUA_LIBS_CONFIG=-llua5.1\
	./configure
$ LUA=1 LUA_CPPFLAGS_CONFIG=-I/usr/local/include/lua5.1 LUA_LIBS_CONFIG=-llua5.1\
	(g)make

Use the _CONFIG settings to point out to PowerDNS where your Lua
installation resides. PowerDNS supports Lua 5.1 through Lua 5.3.

RUNNING ON A DIFFERENT MACHINE
------------------------------
To prevent hassles with g++/c++ dependencies, you can build like this:

   $ STATIC=semi ./configure ; STATIC=semi make all

