Skip to content

Commit

Permalink
fix libtool crap for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dugsong committed Jan 20, 2007
1 parent 1a093d6 commit 12fca29
Show file tree
Hide file tree
Showing 134 changed files with 79,586 additions and 0 deletions.
59 changes: 59 additions & 0 deletions trunk/INSTALL
@@ -0,0 +1,59 @@

*BSD, MacOS X, Linux
--------------------

./configure && make

Solaris, IRIX, BSD/OS, HP-UX, Tru64
-----------------------------------

For firewall support, install Darren Reed's IP Filter package:

http://coombs.anu.edu.au/~avalon/

For tunnel support on Solaris, install the Universal TUN/TAP Driver:

http://vtun.sourceforge.net/tun/

Unixware, AIX
-------------

These ports are incomplete. If anyone can set me up with legitimate
root access to these platforms, it would be most appreciated. :-)

Windows 2000/XP
---------------

For raw Ethernet sending, install the WinPcap driver and DLLs, and
extract their developer pack to a build directory:

http://winpcap.polito.it/install/default.htm

# XXX - unsupported for now
# For tunnel interface support, install the OpenVPN "TAP-Win32 Virtual
# Ethernet Adapter" component (their Windows installer will let you
# install it alone):
#
# http://openvpn.sourceforge.net/

For firewall support, install HSC's PktFilter service:

http://www.hsc.fr/ressources/outils/pktfilter/index.html.en

Most Windows developers should just use the libdnet developer's pack
(with MinGW and MSVC++ libraries) instead of building it themselves.
But for those who really want to know...

To build a MinGW native library (under Cygwin+MinGW):

./configure && make

To build a Microsoft Visual C++ native library and Python module
(again, under Cygwin+MinGW):

./configure
cd python && C:/Python23/python.exe setup.py build
cd ../src && lib /out:dnet.lib *.obj


# $Id$
31 changes: 31 additions & 0 deletions trunk/LICENSE
@@ -0,0 +1,31 @@

Copyright (c) 2000-2006 Dug Song <dugsong@monkey.org>
All rights reserved, all wrongs reversed.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

3. The names of the authors and copyright holders may not be used
to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
19 changes: 19 additions & 0 deletions trunk/Makefile.am
@@ -0,0 +1,19 @@
## $Id$

include $(top_srcdir)/Makefile.am.common

SUBDIRS = include man src python test

bin_SCRIPTS = dnet-config

EXTRA_DIST = LICENSE Makefile.am.common acconfig.h

CLEANFILES = dnet-config

AUX_DIST = $(ac_aux_dir)/acinclude.m4 \
$(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/ltmain.sh \
$(ac_aux_dir)/missing \
$(ac_aux_dir)/mkinstalldirs
6 changes: 6 additions & 0 deletions trunk/Makefile.am.common
@@ -0,0 +1,6 @@
## $Id$

AUTOMAKE_OPTIONS = foreign no-dependencies

AM_CPPFLAGS = -I$(top_srcdir)/include

0 comments on commit 12fca29

Please sign in to comment.