# General:
  # PassiveDNS was initially developed on a Ubuntu 10.04 platform, and later on Ubuntu 12.04, so all
  # main testing was done on Ubuntu. I have compiled passivedns static and dynamic
  # and tried it out on different linux OSes with great luck.
  # I try to keep the git tags "stable" and the master branch might be under development.
  # If you have issues with the current master, please read doc/ISSUES

FreeBSD Install
  $ pkg_add -r gmake git ldns
  $ rehash
  $ mkdir /usr/local/src/; cd /usr/local/src
  $ git clone git://github.com/gamelinux/passivedns.git
  $ cd passivedns/
  $ autoreconf --install
  $ ./configure
  $ gmake

OS X (using Homebrew for dependencies)
  $ brew install automake autoconf ldns jansson
  $ git clone git://github.com/gamelinux/passivedns.git
  $ cd passivedns/
  $ autoreconf --install
  $ ./configure
  $ make

Ubuntu
  $ sudo apt-get install git-core binutils-dev libldns1 libldns-dev libpcap-dev 
  # libdate-simple-perl is also needed for pdns2db.pl
  $ git clone git://github.com/gamelinux/passivedns.git
  $ cd passivedns/
  $ autoreconf --install
  $ ./configure
  $ make

RedHat (RHEL 6u2 x86_64)
  $ yum groupinstall "Development tools"
  # EPEL : http://fedora.uib.no/epel/6/x86_64/
  $ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/ldns-devel-1.6.11-2.el6.x86_64.rpm
  $ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/ldns-1.6.11-2.el6.x86_64.rpm
  # perl-DateTime is also needed for pdns2db.pl
  $ wget http://www.tcpdump.org/release/libpcap-1.2.1.tar.gz
  $ tar zxf libpcap-1.2.1.tar.gz; cd libpcap-1.2.1; ./configure; make && make install
  $ git clone git://github.com/gamelinux/passivedns.git
  $ cd passivedns/
  $ autoreconf --install
  $ ./configure
  $ make

