Skip to content

Commit 22711ea

Browse files
committed
Updated the most crucial parts of the build system
This is ugly as f*%$ and Cygwin's faith is uncertain. But we have full MinGW support now, so who cares.
1 parent d3f60e9 commit 22711ea

9 files changed

+265
-46
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ autom4te*
2626
libtool
2727
dnet-config
2828
include/stamp*
29-
29+
build-aux
3030
test/dnet/dnet
3131
python/setup.py

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ When building from Github make sure to run ./autogen.sh to generate the configur
4848
Cross compiling using WSL:
4949

5050
32bit:
51-
./configure --host=i686-w64-mingw32 --with-wpdpack=../WpdPack
51+
./configure --host=i686-w64-mingw32 && make
5252
64bit:
53-
./configure --host=x86_64-w64-mingw32 --with-wpdpack=../WpdPack
53+
./configure --host=x86_64-w64-mingw32 && make
5454

5555

5656
Compiling natively (under MSYS2):

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Libdnet provides a simplified, portable interface to several low-level networking routines, including network address manipulation, kernel arp(4) cache and route(4) table lookup and manipulation, network firewalling, network interface lookup and manipulation, IP tunneling, and raw IP packet and Ethernet frame transmission.
66

7-
This is a more or less personal fork I'm committed to maintain and keep up-to-date for educational proposes although any kind of help is appreciated. The list of changes and "planned adjustments" pretty much matches that of upstream.
7+
This is a more or less personal fork I'm committed to maintain and keep up-to-date for educational proposes but any kind of help is greatly appreciated. The list of changes and "planned adjustments" pretty much matches that of upstream.
88

99
original: https://github.com/dugsong/libdnet
1010
upstream: https://github.com/boundary/libdnet
@@ -16,7 +16,7 @@ nmap fork of libdnet: https://github.com/nmap/nmap/tree/master/libdnet-stripped
1616

1717
## Build
1818

19-
For now, please see INSTALL for various build instructions.
19+
For now, see INSTALL for various build instructions.
2020

2121
## Downloads
2222

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
autoreconf -i
2+
autoreconf -i -W all

configure.ac

+99-39
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ dnl
22
dnl configure.in
33
dnl
44
dnl Copyright (c) 2000 Dug Song <[email protected]>
5+
dnl Modified by Ali Abdulkadir <[email protected]>
56
dnl
6-
dnl $Id: configure.in 638 2007-01-20 11:39:21Z dugsong $
7+
dnl Process this file with autoconf to produce a configure script.
78

8-
AC_INIT([libdnet], [1.12])
9+
AC_INIT([libdnet],[1.12],[[email protected]],[libdnet],[https://github.com/sgeto/libdnet])
910
AC_CONFIG_SRCDIR([include/dnet.h])
10-
AC_CONFIG_AUX_DIR(config)
11+
AC_CONFIG_AUX_DIR([build-aux])
1112
AC_SUBST(ac_aux_dir)
12-
13+
AC_PREREQ([2.69])
14+
LT_PREREQ([2.4.2])
15+
AC_MSG_RESULT(Beginning autoconfiguration process for libdnet-${PACKAGE_VERSION} ...)
1316
AC_CONFIG_HEADERS([include/config.h])
1417
AM_INIT_AUTOMAKE
1518

@@ -19,27 +22,41 @@ AC_CONFIG_MACRO_DIR([m4])
1922
dnl XXX - stop the insanity!@#$
2023
AM_MAINTAINER_MODE
2124

25+
dnl the default compiler flags are "-O2 -g" if the user does not set anything.
26+
dnl IMO O2 optimizations are fine, but debugging should be completely up to the
27+
dnl user. The following test does just that. (Do not move these lines
28+
dnl below "AC_PROG_CC"!!)
29+
if test -z $CFLAGS; then
30+
CFLAGS="-O2"
31+
fi
32+
2233
dnl Check for system type.
2334
dnl XXX - we do this to qualify our later feature checks, since some
2435
dnl systems claim to support multiple features, but are quite b0rked.
2536
AC_CANONICAL_HOST
26-
dnl XXX - spoof AC_CYGWIN
37+
2738
case "$host_os" in
2839
*cygwin*) CYGWIN=yes;MINGW=no;;
2940
*mingw*) CYGWIN=yes;MINGW=yes;;
3041
*) CYGWIN=no;MINGW=no;;
3142
esac
3243

33-
dnl Initialize prefix.
34-
if test "$prefix" = "NONE"; then
35-
prefix="/usr/local"
44+
dnl Initialize and Handle the --prefix=... option
45+
46+
if test "${prefix}" = "NONE"; then
47+
prefix=/usr/local
48+
fi
49+
if test "${exec_prefix}" = "NONE"; then
50+
exec_prefix=$prefix
3651
fi
52+
dnl libdir must be a fully qualified path (not ${exec_prefix}/lib)
53+
eval libdir="$libdir"
3754

3855
dnl Checks for programs.
3956
AC_PROG_CC
4057
AC_PROG_INSTALL
41-
AC_LIBTOOL_DLOPEN
42-
AM_PROG_LIBTOOL
58+
LT_INIT([dlopen win32-dll])
59+
LT_LANG([Windows Resource])
4360

4461
dnl Checks for Python.
4562
dnl XXX - use AM_PATH_PYTHON after automake upgrade
@@ -65,7 +82,7 @@ AC_ARG_WITH(python,
6582
fi
6683
done
6784
if test "x$PYTHON" = "x"; then
68-
AC_ERROR(python not found in $withval)
85+
AC_MSG_ERROR(python not found in $withval)
6986
fi
7087
;;
7188
esac
@@ -82,6 +99,11 @@ if test -r /usr/include/sgidefs.h ; then
8299
fi
83100
dnl XXX - we need MingW32 under Cygwin for win32
84101
if test "$CYGWIN" = yes ; then
102+
WIN32="yes"
103+
AC_SUBST(WIN32)
104+
AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
105+
AC_CHECK_TOOL([WINDRES], [windres], AC_MSG_ERROR([windres not found]))
106+
AC_SUBST(WINDRES)
85107
if test -d /usr/include/mingw || test -d /usr/i686-w64-mingw32; then
86108
if test "$MINGW" = no ; then
87109
CPPFLAGS="$CPPFLAGS -mno-cygwin"
@@ -91,35 +113,72 @@ if test "$CYGWIN" = yes ; then
91113
[Define for faster code generation.])
92114
AC_CHECK_LIB(ws2_32, main)
93115
AC_CHECK_LIB(iphlpapi, main)
116+
AC_CHECK_LIB(packet, PacketSetMode, ,AC_MSG_ERROR(libpacket.a not found.))
117+
AC_CHECK_LIB(wpcap, pcap_setmode, ,AC_MSG_ERROR(libwpcap.a not found.))
94118
AC_DEFINE(snprintf, _snprintf,
95119
[Use MingW32's internal snprintf])
120+
elif test "$MINGW" = yes ; then
121+
WIN32="yes"
122+
AC_SUBST(WIN32)
123+
AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
124+
AC_CHECK_TOOL([WINDRES], [windres], AC_MSG_ERROR([windres not found]))
125+
AC_SUBST(WINDRES)
126+
AC_DEFINE(WIN32_LEAN_AND_MEAN, 1,
127+
[Define for faster code generation.])
128+
if test "${cross_compiling}" = "yes" ; then
129+
if test "$host" = "i686-w64-mingw32" ; then
130+
AC_CHECK_LIB(packet, PacketSetMode, ,AC_MSG_ERROR(libpacket.a not found.))
131+
AC_CHECK_LIB(wpcap, pcap_setmode, ,AC_MSG_ERROR(libwpcap.a not found.))
132+
LIBS="$LIBS -lws2_32 -liphlpapi"
133+
CFLAGS="$CFLAGS -static-libgcc -march=i686 -mwin32"
134+
else
135+
AC_CHECK_LIB(packet, PacketSetMode, ,AC_MSG_ERROR(libpacket.a not found.))
136+
AC_CHECK_LIB(wpcap, pcap_setmode, ,AC_MSG_ERROR(libwpcap.a not found.))
137+
LIBS="$LIBS -lws2_32 -liphlpapi"
138+
CFLAGS="$CFLAGS -static-libgcc -mwin32"
139+
LDFLAGS="$LDFLAGS -Wl,--high-entropy-va"
140+
fi
141+
else
142+
if test "$host" = "i686-w64-mingw32" ; then
143+
AC_CHECK_LIB(packet, PacketSetMode, ,AC_MSG_ERROR(libpacket.a not found.))
144+
AC_CHECK_LIB(wpcap, pcap_setmode, ,AC_MSG_ERROR(libwpcap.a not found.))
145+
LIBS="$LIBS -lws2_32 -liphlpapi"
146+
CFLAGS="$CFLAGS -march=i686 -mwin32"
147+
else
148+
AC_CHECK_LIB(packet, PacketSetMode, ,AC_MSG_ERROR(libpacket.a not found.))
149+
AC_CHECK_LIB(wpcap, pcap_setmode, ,AC_MSG_ERROR(libwpcap.a not found.))
150+
LIBS="$LIBS -lws2_32 -liphlpapi"
151+
CFLAGS="$CFLAGS -mwin32"
152+
LDFLAGS="$LDFLAGS -Wl,--high-entropy-va"
153+
fi
154+
fi
96155
else
97156
AC_MSG_ERROR([need MingW32 package to build under Cygwin])
98157
fi
99-
AC_MSG_CHECKING(for WinPcap developer's pack)
100-
AC_ARG_WITH(wpdpack,
101-
[ --with-wpdpack=DIR use WinPcap developer's pack in DIR],
102-
[ AC_MSG_RESULT($withval)
103-
if test -f $withval/Include/Packet32.h -a -f $withval/Lib/Packet.lib; then
104-
owd=`pwd`
105-
if cd $withval; then withval=`pwd`; cd $owd; fi
106-
CFLAGS="$CFLAGS -I$withval/include"
107-
LIBS="$LIBS -L$withval/lib -lPacket -lwpcap"
108-
else
109-
AC_MSG_ERROR(packet32.h or packet.lib not found in $withval)
110-
fi ],
111-
[ for dir in ${prefix} ${HOME}/WPdpack ; do
112-
if test -f ${dir}/include/packet32.h -a -f ${dir}/lib/packet.lib; then
113-
CFLAGS="$CFLAGS -I${dir}/include"
114-
LIBS="$LIBS -L${dir}/lib -lpacket -lpcap"
115-
have_pcap=yes
116-
break;
117-
fi
118-
done
119-
if test "$have_pcap" != yes; then
120-
AC_MSG_ERROR(WinPcap developer's pack not found)
121-
fi
122-
AC_MSG_RESULT(yes) ])
158+
# AC_MSG_CHECKING(for WinPcap developer's pack)
159+
# AC_ARG_WITH(wpdpack,
160+
# [ --with-wpdpack=DIR use WinPcap developer's pack in DIR],
161+
# [ AC_MSG_RESULT($withval)
162+
# if test -f $withval/Include/Packet32.h -a -f $withval/Lib/Packet.lib; then
163+
# owd=`pwd`
164+
# if cd $withval; then withval=`pwd`; cd $owd; fi
165+
# CFLAGS="$CFLAGS -I$withval/include"
166+
# LIBS="$LIBS -L$withval/lib -lPacket -lwpcap"
167+
# else
168+
# AC_MSG_ERROR(packet32.h or packet.lib not found in $withval)
169+
# fi ],
170+
# [ for dir in ${prefix} ${HOME}/WPdpack ; do
171+
# if test -f ${dir}/include/packet32.h -a -f ${dir}/lib/packet.lib; then
172+
# CFLAGS="$CFLAGS -I${dir}/include"
173+
# LIBS="$LIBS -L${dir}/lib -lpacket -lpcap"
174+
# have_pcap=yes
175+
# break;
176+
# fi
177+
# done
178+
# if test "$have_pcap" != yes; then
179+
# AC_MSG_ERROR(WinPcap developer's pack not found)
180+
# fi
181+
# AC_MSG_RESULT(yes) ]
123182
fi
124183

125184
dnl Checks for libraries.
@@ -149,7 +208,7 @@ AC_ARG_WITH(check,
149208
CHECKINC="-I$withval/src"
150209
CHECKLIB="-L$withval/src -lcheck"
151210
else
152-
AC_ERROR(check.h or libcheck.a not found in $withval)
211+
AC_MSG_ERROR(check.h or libcheck.a not found in $withval)
153212
fi
154213
;;
155214
esac ],
@@ -325,7 +384,8 @@ else
325384
AC_LIBOBJ([tun-none])
326385
fi
327386

328-
AC_OUTPUT([Makefile dnet-config include/Makefile include/dnet/Makefile
387+
AC_CONFIG_FILES([Makefile dnet-config include/Makefile include/dnet/Makefile
329388
man/Makefile src/Makefile python/Makefile python/setup.py
330-
test/Makefile test/check/Makefile test/dnet/Makefile],
331-
[chmod 755 dnet-config])
389+
test/Makefile test/check/Makefile test/dnet/Makefile])
390+
AC_CONFIG_COMMANDS([default],[chmod 755 dnet-config],[])
391+
AC_OUTPUT

include/config.h.in

+6
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
/* Define to 1 if you have the `nsl' library (-lnsl). */
4646
#undef HAVE_LIBNSL
4747

48+
/* Define to 1 if you have the `packet' library (-lpacket). */
49+
#undef HAVE_LIBPACKET
50+
4851
/* Define to 1 if you have the `resolv' library (-lresolv). */
4952
#undef HAVE_LIBRESOLV
5053

@@ -54,6 +57,9 @@
5457
/* Define to 1 if you have the `str' library (-lstr). */
5558
#undef HAVE_LIBSTR
5659

60+
/* Define to 1 if you have the `wpcap' library (-lwpcap). */
61+
#undef HAVE_LIBWPCAP
62+
5763
/* Define to 1 if you have the `ws2_32' library (-lws2_32). */
5864
#undef HAVE_LIBWS2_32
5965

src/Makefile.am

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
## $Id: Makefile.am 625 2006-01-19 06:11:01Z dugsong $
21

32
include $(top_srcdir)/Makefile.am.common
43

@@ -11,3 +10,11 @@ libdnet_la_LIBADD = @LTLIBOBJS@
1110
libdnet_la_LDFLAGS = -version-info 1:1:0
1211

1312
noinst_HEADERS = crc32ct.h
13+
14+
if WIN32
15+
libdnet_la_SOURCES += dll_info.rc
16+
libdnet_la_LDFLAGS += -no-undefined -Wl,--output-def,libdnet-1.def
17+
18+
.rc.lo:
19+
$(LIBTOOL) --tag=RC --mode=compile $(WINDRES) $< -o $@
20+
endif

src/dll_info.rc

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* dll_info.rc
3+
*
4+
* Copyright (c) 2017 Ali Abdulkadir <[email protected]>
5+
*
6+
*/
7+
8+
9+
/*
10+
* FIXME all this needs to be manually updated.
11+
*/
12+
13+
#include <winver.h>
14+
15+
VS_VERSION_INFO VERSIONINFO
16+
FILEVERSION 1,1,2,0
17+
PRODUCTVERSION 1,1,2,0
18+
FILEFLAGSMASK 0x3fL
19+
FILEOS VOS__WINDOWS32
20+
FILETYPE VFT_DLL
21+
FILESUBTYPE VFT2_DRV_NETWORK
22+
FILEFLAGS 0
23+
BEGIN
24+
BLOCK "StringFileInfo"
25+
BEGIN
26+
BLOCK "040904b0"
27+
BEGIN
28+
VALUE "Comments", "All rights reserved, all wrongs reversed\0"
29+
VALUE "CompanyName", "https://github.com/sgeto/libdnet\0"
30+
VALUE "FileDescription", "Simplified and Portable Interface to Several Low-Level Networking Routines\0"
31+
VALUE "FileVersion", "1,1,2,0"
32+
VALUE "InternalName", "Libnet\0"
33+
VALUE "LegalCopyright", "Copyright (c) Dug Song and Others.\0"
34+
VALUE "LegalTrademarks", "\0"
35+
VALUE "OriginalFilename", "libdnet-1.dll\0"
36+
VALUE "ProductName", "libdnet\0"
37+
VALUE "ProductVersion", "1.12"
38+
END
39+
END
40+
BLOCK "VarFileInfo"
41+
BEGIN
42+
VALUE "Translation", 0x0, 1200
43+
END
44+
END
45+
/* EOF */

0 commit comments

Comments
 (0)