WHAT DO YOU NEED TO COMPILE DNSA ?
----------------------------------
	* Libnet  : http://www.packetfactory.net/projects/libnet/
	* Libpcap : http://www.tcpdump.org

Compile and install them (make install) if you're root.


HOW TO COMPILE SOURCES ?
------------------------
	* ./configure [ generic use ]

You'll maybe need to enable some flags as :
	./configure --with-libnet=PATH_TO_LIBNET
or
	./configure --with-libpcap=PATH_TO_LIBPCAP
or if you want to debug it (or have more informations), you can enable debug specifying --enable-debug option

Examples of configure applications :
------------------------------------
	# Normal use :
	./configure --with-libnet=/usr/local/libnet/
	
	# Debug mode : (need Electric-fence)
		./configure --with-libnet=/usr/local/libnet/ --with-ldflags=-lefence --enable-debug

Be careful to the configure output, it may give you some useful informations.

	* make


HOW TO INSTALL ?
----------------
Be sure run this as root :
	* make install
