-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.in
404 lines (348 loc) · 9.75 KB
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
AC_INIT(Makefile.in)
PACKAGE=iplog
AM_INIT_AUTOMAKE($PACKAGE, 2.2.3)
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
AC_PROG_MAKE_SET
AC_ARG_PROGRAM
AC_PROG_CC
AC_PROG_INSTALL
AC_CANONICAL_HOST
dnl
dnl Test for __attribute__
dnl
AC_DEFUN(AC_C___ATTRIBUTE__, [
AC_MSG_CHECKING(for __attribute__)
AC_CACHE_VAL(ac_cv___attribute__, [
AC_TRY_COMPILE([
#include <stdlib.h>],
[static void foo(void) __attribute__ ((noreturn));
static void
foo(void) {
exit(1);
}],
ac_cv___attribute__=yes,
ac_cv___attribute__=no)])
if test "$ac_cv___attribute__" = "yes"; then
AC_DEFINE(HAVE___ATTRIBUTE__, 1, [define if your compiler has __attribute__])
fi
AC_MSG_RESULT($ac_cv___attribute__)
])
AC_C___ATTRIBUTE__
AC_ARG_WITH(libpcap,
[ --with-libpcap=DIR Specify location of libpcap],[
CPPFLAGS="$CPPFLAGS -I$withval"
LDFLAGS="$LDFLAGS -L$withval"
])
AC_ARG_WITH(libpcap-libs,
[ --with-libpcap-libs=DIR Specify location of the libpcap libraries],[
LDFLAGS="$LDFLAGS -L$withval"
])
AC_ARG_WITH(libpcap-includes,
[ --with-libpcap-includes=DIR Specify location of libpcap header files],[
CPPFLAGS="$CPPFLAGS -I$withval"
])
iplog_debug=no
AC_ARG_ENABLE(debug,
[ --enable-debug Enable debugging messages.],
[if test $enableval = yes; then iplog_debug=yes; fi])
if test $iplog_debug = yes; then
CFLAGS="$CFLAGS -DDEBUG"
fi
AC_CHECK_FUNCS(dprintf vasprintf getopt_long localtime_r inet_aton vsnprintf snprintf getpagesize)
AC_CHECK_HEADERS(paths.h sys/sockio.h)
AC_CHECK_TYPE(u_int32_t, uint32_t)
if test $ac_cv_type_u_int32_t = no; then
AC_CHECK_TYPE(uint32_t, unsigned int)
fi
AC_CHECK_TYPE(u_int16_t, uint16_t)
if test $ac_cv_type_u_int16_t = no; then
AC_CHECK_TYPE(uint16_t, unsigned short)
fi
AC_CHECK_TYPE(u_int8_t, uint8_t)
if test $ac_cv_type_u_int8_t = no; then
AC_CHECK_TYPE(uint8_t, unsigned char)
fi
AC_MSG_CHECKING(for ipaddr_t)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>],
[sizeof(ipaddr_t);],
[AC_DEFINE(HAVE_IPADDR_T)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(for in_port_t)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>],
[sizeof(in_port_t);],
[AC_DEFINE(HAVE_IN_PORT_T)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)])
dnl from libpcap
AC_DEFUN(AC_SOCKADDR_SA_LEN,
[AC_MSG_CHECKING(if sockaddr struct has sa_len member)
AC_CACHE_VAL(ac_cv_lbl_sockaddr_has_sa_len,
AC_TRY_COMPILE([
# include <sys/types.h>
# include <sys/socket.h>],
[u_int i = sizeof(((struct sockaddr *)0)->sa_len)],
ac_cv_lbl_sockaddr_has_sa_len=yes,
ac_cv_lbl_sockaddr_has_sa_len=no))
AC_MSG_RESULT($ac_cv_lbl_sockaddr_has_sa_len)
if test $ac_cv_lbl_sockaddr_has_sa_len = yes ; then
AC_DEFINE(HAVE_SOCKADDR_SA_LEN)
fi])
dnl from gnome
AC_DEFUN([PTHREAD_CHECK],[
PTHREAD_LIB=no
AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread",
[AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads",
[AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r",
[AC_CHECK_FUNCS(pthread_create, PTHREAD_LIB="-lc")]
)]
)]
)
AC_PROVIDE([PTHREAD_CHECK])
])
CFLAGS="$CFLAGS -D_REENTRANT"
PTHREAD_CHECK
if test $PTHREAD_LIB = "no" ; then
echo "Error: pthreads are required to build this package."
echo "Error: See the README file."
exit 1
fi
pth_cancel=""
if test "$PTHREAD_LIB" = "-lc" ; then
AC_CHECK_FUNCS(pthread_cancel, pth_cancel="yes")
else
PJG=`echo $PTHREAD_LIB | sed 's/^-l//g'`
AC_CHECK_LIB($PJG, pthread_cancel, pth_cancel="yes")
fi
if test -n "$pth_cancel" ; then
AC_DEFINE(HAVE_PTHREAD_CANCEL)
fi
SLIB=$PJG
renf=no
AC_CHECK_FUNCS(getservbyport_r, renf=yes)
if test $renf = "no" ; then
for i in $PJG $SLIB "socket" "nsl" ; do
AC_CHECK_LIB($i, getservbyport_r, renf=yes)
if test $renf = "yes" ; then
AC_DEFINE(HAVE_GETSERVBYPORT_R)
if test $SLIB != $i ; then
SLIB=$i
SOCKLIB="$SOCKLIB -l$i"
fi
break
fi
done
fi
if test $renf = "yes" ; then
OLDLIBS=$LIBS
LIBS="$LIBS $SOCKLIB"
AC_MSG_CHECKING(whether getservbyport_r takes 6 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getservbyport_r(0, NULL, NULL, NULL, 0, NULL);],
[AC_DEFINE(HAVE_GETSERVBYPORT_RSIX)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether getservbyport_r takes 5 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getservbyport_r(0, NULL, NULL, NULL, 0);],
[AC_DEFINE(HAVE_GETSERVBYPORT_RFIVE)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether getservbyport_r takes 4 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getservbyport_r(0, NULL, NULL, NULL);],
[AC_DEFINE(HAVE_GETSERVBYPORT_RFOUR)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
echo "Error: Your system is weird. Please mail [email protected] the"
echo "function prototype for getservbyport_r"
exit 1
fi
LIBS=$OLDLIBS
fi
renf=no
AC_CHECK_FUNCS(gethostbyaddr_r, renf=yes)
if test $renf = "no" ; then
for i in $SLIB $PJG "socket" "nsl" ; do
AC_CHECK_LIB($i, gethostbyaddr_r, renf=yes)
if test $renf = "yes" ; then
AC_DEFINE(HAVE_GETHOSTBYADDR_R)
if test $SLIB != $i ; then
SLIB=$i
SOCKLIB="$SOCKLIB -l$i"
fi
break
fi
done
fi
if test $renf = "yes" ; then
OLDLIBS=$LIBS
LIBS="$LIBS $SOCKLIB"
AC_MSG_CHECKING(whether gethostbyaddr_r takes 8 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL, NULL);],
[AC_DEFINE(HAVE_GETHOSTBYADDR_REIGHT)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether gethostbyaddr_r takes 7 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL);],
[AC_DEFINE(HAVE_GETHOSTBYADDR_RSEVEN)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether gethostbyaddr_r takes 5 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[gethostbyaddr_r(NULL, 0, 0, NULL, NULL);],
[AC_DEFINE(HAVE_GETHOSTBYADDR_RFIVE)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
echo "Error: Your system is weird. Please mail [email protected] the"
echo "function prototype for getprotobynumber_r"
exit 1
fi
LIBS=$OLDLIBS
fi
renf=no
AC_CHECK_FUNCS(getprotobynumber_r, renf=yes)
if test $renf = "no" ; then
for i in $SLIB $PJG "socket" "nsl"; do
AC_CHECK_LIB($i, getprotobynumber_r, renf=yes)
if test $renf = "yes"; then
AC_DEFINE(HAVE_GETPROTOBYNUMBER_R)
if test $SLIB != $i ; then
SLIB=$i
SOCKLIB="$SOCKLIB -l$i"
fi
break
fi
done
fi
if test $renf = "yes" ; then
OLDLIBS=$LIBS
LIBS="$LIBS $SOCKLIB"
AC_MSG_CHECKING(whether getprotobynumber_r takes 5 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getprotobynumber_r(0, NULL, NULL, 0, NULL);],
[AC_DEFINE(HAVE_GETPROTOBYNUMBER_RFIVE)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether getprotobynumber_r takes 4 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getprotobynumber_r(0, NULL, NULL, 0);],
[AC_DEFINE(HAVE_GETPROTOBYNUMBER_RFOUR)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
renf=yes
AC_MSG_CHECKING(whether getprotobynumber_r takes 3 args)
AC_TRY_COMPILE([#include <unistd.h>
#include <sys/types.h>
#include <netdb.h>],
[getprotobynumber_r(0, NULL, NULL);],
[AC_DEFINE(HAVE_GETPROTOBYNUMBER_RTHREE)
AC_MSG_RESULT(yes)],
[renf=no
AC_MSG_RESULT(no)])
fi
if test $renf = "no" ; then
echo "Error: Your system is weird. Please mail [email protected] the"
echo "function prototype for getprotobynumber_r"
exit 1
fi
LIBS=$OLDLIBS
fi
if test "$PTHREAD_LIB" = "-lc_r" ; then
PTHREAD_LIB=""
CFLAGS="$CFLAGS -pthread"
fi
if test "$PTHREAD_LIB" = "-lc" ; then
PTHREAD_LIB=""
fi
if test "$PTHREAD_LIB" = "-lpthreads" ; then
PTHREAD_LIB="-lpthread"
fi
PCAP_LIB=no
AC_CHECK_LIB(pcap, pcap_open_live, PCAP_LIB="-lpcap")
if test $PCAP_LIB = "no" ; then
echo "Error: libpcap is required to build this package."
echo "Error: See the README file."
exit 1
fi
AC_SOCKADDR_SA_LEN
LIBS="$LIBS $PTHREAD_LIB $PCAP_LIB $SOCKLIB"
pcap_h_found=no
AC_CHECK_HEADER(pcap.h, [pcap_h_found=yes])
if test $pcap_h_found = no; then
old_cpp_flags=$CPPFLAGS
CPPFLAGS="$old_cpp_flags -I/usr/include/pcap"
AC_CHECK_HEADER(pcap/pcap.h, [pcap_h_found=yes])
if test $pcap_h_found = "no" ; then
CPPFLAGS="$old_cpp_flags -I/usr/local/include -I/usr/local/include/pcap"
AC_CHECK_HEADER(pcap.h, [pcap_h_found=yes])
if test $pcap_h_found = "no" ; then
echo "Error: You seem to be missing the libpcap header files."
echo "Error: See the README file."
exit 1
fi
fi
fi
AC_SUBST(LIBS)
AC_SUBST(CPPFLAGS)
AC_OUTPUT(Makefile src/Makefile src/gnu/Makefile)
echo
echo "Please remember to use GNU make to build iplog."
echo "iplog will not build with BSD (or any other) make."
echo "You can get GNU make from any GNU mirror in /pub/gnu/make"
echo