-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
1090 lines (862 loc) · 31.5 KB
/
configure.ac
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- mode: m4; -*-
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id$
sinclude(m4/az_python.m4)
sinclude(m4/az_bind_ipv4_mapped_localhost.m4)
AC_PREREQ(2.59)
AC_INIT([dionaea], [0.1.0], [[email protected]])
AM_INIT_AUTOMAKE([dionaea], [0.1.0])
AC_REVISION([$Id$])
AC_PREFIX_DEFAULT(/opt/dionaea)
AC_CONFIG_SRCDIR([include/dionaea.h])
AM_CONFIG_HEADER([config.h])
# AM_MAINTAINER_MODE
CFLAGS="${CFLAGS} -std=c99 -D_GNU_SOURCE"
AC_CANONICAL_HOST
AC_C_CONST
AC_C_BIGENDIAN
# Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
AC_CHECK_HEADERS([stdint.h stdlib.h string.h strings.h unistd.h netpacket/packet.h execinfo.h linux/sockios.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_TYPE_UID_T
AC_STRUCT_TM
AC_TYPE_SIZE_T
AC_TYPE_SIGNAL
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_TYPE_SIGNAL
AC_CHECK_FUNCS([strndup inet_ntoa memmove memset strdup strerror])
dnl **************************************************
dnl * bind() ipv4 mapped address? *
dnl **************************************************
AC_ARG_ENABLE(ev, [ --enable-ipv4-mapped map ipv4 addresses to ipv6 f.e. ::fff:0.0.0.0],
[enable_ipv4_mapped="$enableval"],[enable_ipv4_mapped="no"])
AZ_FUNC_BIND_MAPPED_IPV4_LOCALHOST()
if test x$enable_ipv4_mapped == "xyes"; then
if test x$ac_cv_have_bind_ipv4_mapped_localhost == "xyes"; then
AC_DEFINE(BIND_IPV4_MAPPED_LOCALHOST, 1, "your bind can bind mapped ipv4 localhost to an ipv6 socket")
fi
fi
dnl **************************************************
dnl * libev *
dnl **************************************************
AC_SUBST([LIB_EV_CFLAGS])
AC_SUBST([LIB_EV_LIBS])
enable_ev="yes"
AC_ARG_ENABLE(ev, [ --enable-ev enable support for libev],
[enable_ev="$enableval"],[enable_ev="yes"])
AC_ARG_WITH(ev-include,
[ --with-ev-include=DIR libev include dir],
[ev_inc="$withval"],[ev_inc=no])
AC_ARG_WITH(ev-lib,
[ --with-ev-lib=DIR libev library dir],
[ev_lib="$withval"],[ev_lib=no])
if test x$enable_ev = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$ev_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${ev_inc}"
fi
AC_CHECK_HEADER(ev.h,[enable_ev=yes],[enable_ev=no])
if test x$enable_ev = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$ev_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${ev_lib}"
fi
AC_CHECK_LIB([ev],[ev_run],enable_ev="yes", enable_ev="no")
if test x$enable_ev = "xyes" ; then
if test x$ev_lib != "xno"; then
LIB_EV_LIBS="-L$ev_lib -lev"
else
LIB_EV_LIBS="-lev"
fi
if test x$ev_inc != "xno"; then
LIB_EV_CFLAGS="-I$ev_inc"
else
LIB_EV_CFLAGS=""
fi
LIB_EV_CFLAGS="${LIB_EV_CFLAGS} -DEV_COMPAT3=0"
AC_DEFINE([HAVE_LIBEV], [1], [Define to 1 to compile with ev support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libemu *
dnl **************************************************
AC_SUBST([LIB_EMU_CFLAGS])
AC_SUBST([LIB_EMU_LIBS])
enable_emu="yes"
AC_ARG_ENABLE(emu, [ --enable-emu enable support for libemu],
[enable_emu="$enableval"],[enable_emu="yes"])
AC_ARG_WITH(emu-include,
[ --with-emu-include=DIR libemu include dir],
[emu_inc="$withval"],[emu_inc=no])
AC_ARG_WITH(emu-lib,
[ --with-emu-lib=DIR libemu library dir],
[emu_lib="$withval"],[emu_lib=no])
if test x$enable_emu = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$emu_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${emu_inc}"
fi
AC_CHECK_HEADER(emu/emu.h,[enable_emu=yes],[enable_emu=no])
if test x$enable_emu = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$emu_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${emu_lib}"
fi
AC_CHECK_LIB([emu],[emu_new],enable_emu="yes", enable_emu="no")
if test x$enable_emu = "xyes" ; then
if test x$emu_lib != "xno"; then
LIB_EMU_LIBS="-L$emu_lib -lemu"
else
LIB_EMU_LIBS="-lemu"
fi
if test x$emu_inc != "xno"; then
LIB_EMU_CFLAGS="-I$emu_inc"
else
LIB_EMU_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBEMU], [1], [Define to 1 to compile with emu support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libcspm *
dnl **************************************************
AC_SUBST([LIB_CSPM_CFLAGS])
AC_SUBST([LIB_CSPM_LIBS])
enable_cspm="yes"
AC_ARG_ENABLE(cspm, [ --enable-cspm enable support for libcspm],
[enable_cspm="$enableval"],[enable_cspm="yes"])
AC_ARG_WITH(cspm-include,
[ --with-cspm-include=DIR libcspm include dir],
[cspm_inc="$withval"],[cspm_inc=no])
AC_ARG_WITH(cspm-lib,
[ --with-cspm-lib=DIR libcspm library dir],
[cspm_lib="$withval"],[cspm_lib=no])
if test x$enable_cspm = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$cspm_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${cspm_inc}"
fi
AC_CHECK_HEADER(cspm/cspm.h,[enable_cspm=yes],[enable_cspm=no])
if test x$enable_cspm = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$cspm_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${cspm_lib}"
fi
AC_CHECK_LIB([cspm],[cspm_new],enable_cspm="yes", enable_cspm="no")
if test x$enable_cspm = "xyes" ; then
if test x$cspm_lib != "xno"; then
LIB_CSPM_LIBS="-L$cspm_lib -lcspm"
else
LIB_CSPM_LIBS="-lcspm"
fi
if test x$cspm_inc != "xno"; then
LIB_CSPM_CFLAGS="-I$cspm_inc"
else
LIB_CSPM_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBCSPM], [1], [Define to 1 to compile with cspm support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libudns *
dnl **************************************************
AC_SUBST([LIB_UDNS_CFLAGS])
AC_SUBST([LIB_UDNS_LIBS])
enable_udns="yes"
AC_ARG_ENABLE(udns, [ --enable-udns enable support for libudns],
[enable_udns="$enableval"],[enable_udns="yes"])
AC_ARG_WITH(udns-include,
[ --with-udns-include=DIR libudns include dir],
[udns_inc="$withval"],[udns_inc=no])
AC_ARG_WITH(udns-lib,
[ --with-udns-lib=DIR libudns library dir],
[udns_lib="$withval"],[udns_lib=no])
if test x$enable_udns = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$udns_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${udns_inc}"
fi
AC_CHECK_HEADER(udns.h,[enable_udns=yes],[enable_udns=no])
if test x$enable_udns = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$udns_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${udns_lib}"
fi
AC_CHECK_LIB([udns],[dns_submit_p],enable_udns="yes", enable_udns="no")
if test x$enable_udns = "xyes" ; then
if test x$udns_lib != "xno"; then
LIB_UDNS_LIBS="-L$udns_lib -ludns"
else
LIB_UDNS_LIBS="-ludns"
fi
if test x$udns_inc != "xno"; then
LIB_UDNS_CFLAGS="-I$udns_inc"
else
LIB_UDNS_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBUDNS], [1], [Define to 1 to compile with udns support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libgc *
dnl **************************************************
AC_SUBST([LIB_GC_CFLAGS])
AC_SUBST([LIB_GC_LIBS])
enable_gc="yes"
AC_ARG_ENABLE(gc, [ --enable-gc enable support for libgc],
[enable_gc="$enableval"],[enable_gc="yes"])
AC_ARG_WITH(gc-include,
[ --with-gc-include=DIR libgc include dir],
[gc_inc="$withval"],[gc_inc=no])
AC_ARG_WITH(gc-lib,
[ --with-gc-lib=DIR libgc library dir],
[gc_lib="$withval"],[gc_lib=no])
if test x$enable_gc = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$gc_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${gc_inc}"
fi
AC_CHECK_HEADER(gc.h,[enable_gc=yes],[enable_gc=no])
if test x$enable_gc = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$gc_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${gc_lib}"
fi
AC_CHECK_LIB([gc],[GC_gcollect],enable_gc="yes", enable_gc="no")
if test x$enable_gc = "xyes" ; then
if test x$gc_lib != "xno"; then
LIB_GC_LIBS="-L$gc_lib -lgc"
else
LIB_GC_LIBS="-lgc"
fi
if test x$gc_inc != "xno"; then
LIB_GC_CFLAGS="-I$gc_inc"
else
LIB_GC_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBGC], [1], [Define to 1 to compile with gc support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libssl *
dnl **************************************************
AC_SUBST([LIB_SSL_CFLAGS])
AC_SUBST([LIB_SSL_LIBS])
enable_ssl="yes"
AC_ARG_ENABLE(ssl, [ --enable-ssl enable support for libssl],
[enable_ssl="$enableval"],[enable_ssl="yes"])
AC_ARG_WITH(ssl-include,
[ --with-ssl-include=DIR libssl include dir],
[ssl_inc="$withval"],[ssl_inc=no])
AC_ARG_WITH(ssl-lib,
[ --with-ssl-lib=DIR libssl library dir],
[ssl_lib="$withval"],[ssl_lib=no])
if test x$enable_ssl = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$ssl_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${ssl_inc}"
fi
AC_CHECK_HEADER(openssl/ssl.h,[enable_ssl=yes],[enable_ssl=no])
if test x$enable_ssl = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$ssl_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${ssl_lib}"
fi
AC_CHECK_LIB([ssl],[SSL_connect],enable_ssl="yes", enable_ssl="no")
if test x$enable_ssl = "xyes" ; then
if test x$ssl_lib != "xno"; then
LIB_SSL_LIBS="-L$ssl_lib -lssl"
else
LIB_SSL_LIBS="-lssl"
fi
if test x$ssl_inc != "xno"; then
LIB_SSL_CFLAGS="-I$ssl_inc"
else
LIB_SSL_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 to compile with ssl support])
else
# try with -lcrypto
LDFLAGS="${LDFLAGS} -lcrypto"
AC_CHECK_LIB([ssl],[SSLv23_method],[LIBS=-lcrypto $LIBS
enable_ssl="yes"], enable_ssl="no")
if test x$ssl_lib != "xno"; then
LIB_SSL_LIBS="-L$ssl_lib -lssl -lcrypto"
else
LIB_SSL_LIBS="-lssl -lcrypto"
fi
if test x$ssl_inc != "xno"; then
LIB_SSL_CFLAGS="-I$ssl_inc"
else
LIB_SSL_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 to compile with ssl support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libpcap *
dnl **************************************************
AC_SUBST([LIB_PCAP_CFLAGS])
AC_SUBST([LIB_PCAP_LIBS])
enable_pcap="yes"
AC_ARG_ENABLE(pcap, [ --enable-pcap enable support for libpcap],
[enable_pcap="$enableval"],[enable_pcap="yes"])
AC_ARG_WITH(pcap-include,
[ --with-pcap-include=DIR libpcap include dir],
[pcap_inc="$withval"],[pcap_inc=no])
AC_ARG_WITH(pcap-lib,
[ --with-pcap-lib=DIR libpcap library dir],
[pcap_lib="$withval"],[pcap_lib=no])
if test x$enable_pcap = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$pcap_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${pcap_inc}"
fi
AC_CHECK_HEADER(pcap/sll.h,[enable_pcap=yes],[enable_pcap=no])
if test x$enable_pcap = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$pcap_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${pcap_lib}"
fi
AC_CHECK_LIB([pcap],[pcap_open_live],enable_pcap="yes", enable_pcap="no")
if test x$enable_pcap = "xyes" ; then
if test x$pcap_lib != "xno"; then
LIB_PCAP_LIBS="-L$pcap_lib -lpcap"
else
LIB_PCAP_LIBS="-lpcap"
fi
if test x$pcap_inc != "xno"; then
LIB_PCAP_CFLAGS="-I$pcap_inc"
else
LIB_PCAP_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBPCAP], [1], [Define to 1 to compile with pcap support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libnetfilter_queue *
dnl **************************************************
AC_SUBST([LIB_NETFILTER_QUEUE_CFLAGS])
AC_SUBST([LIB_NETFILTER_QUEUE_LIBS])
enable_netfilter_queue="yes"
AC_ARG_ENABLE(netfilter_queue, [ --enable-netfilter_queue enable support for libnetfilter_queue],
[enable_netfilter_queue="$enableval"],[enable_netfilter_queue="yes"])
AC_ARG_WITH(netfilter_queue-include,
[ --with-netfilter_queue-include=DIR libnetfilter_queue include dir],
[netfilter_queue_inc="$withval"],[netfilter_queue_inc=no])
AC_ARG_WITH(netfilter_queue-lib,
[ --with-netfilter_queue-lib=DIR libnetfilter_queue library dir],
[netfilter_queue_lib="$withval"],[netfilter_queue_lib=no])
if test x$enable_netfilter_queue = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$netfilter_queue_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${netfilter_queue_inc}"
fi
AC_CHECK_HEADER(libnetfilter_queue/libnetfilter_queue.h,[enable_netfilter_queue=yes],[enable_netfilter_queue=no])
if test x$enable_netfilter_queue = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$netfilter_queue_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${netfilter_queue_lib}"
fi
AC_CHECK_LIB([netfilter_queue],[nfq_open],enable_netfilter_queue="yes", enable_netfilter_queue="no")
if test x$enable_netfilter_queue = "xyes" ; then
if test x$netfilter_queue_lib != "xno"; then
LIB_NETFILTER_QUEUE_LIBS="-L$netfilter_queue_lib -lnetfilter_queue"
else
LIB_NETFILTER_QUEUE_LIBS="-lnetfilter_queue"
fi
if test x$netfilter_queue_inc != "xno"; then
LIB_NETFILTER_QUEUE_CFLAGS="-I$netfilter_queue_inc"
else
LIB_NETFILTER_QUEUE_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBNETFILTER_QUEUE], [1], [Define to 1 to compile with netfilter_queue support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libxmatch *
dnl **************************************************
AC_SUBST([LIB_XMATCH_CFLAGS])
AC_SUBST([LIB_XMATCH_LIBS])
enable_xmatch="yes"
AC_ARG_ENABLE(xmatch, [ --enable-xmatch enable the xmatch plugin],
[enable_xmatch="$enableval"],[enable_xmatch="yes"])
AC_ARG_WITH(xmatch-include,
[ --with-xmatch-include=DIR libxmatch include dir],
[xmatch_inc="$withval"],[xmatch_inc=no])
AC_ARG_WITH(xmatch-lib,
[ --with-xmatch-lib=DIR libxmatch library dir],
[xmatch_lib="$withval"],[xmatch_lib=no])
if test x$enable_xmatch = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$xmatch_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${xmatch_inc}"
fi
AC_CHECK_HEADER(xmatch.h,[enable_xmatch=yes],[enable_xmatch=no])
if test x$enable_xmatch = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$xmatch_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${xmatch_lib}"
fi
AC_CHECK_LIB([xmatch],[xm_match],enable_xmatch="yes", enable_xmatch="no")
if test x$enable_xmatch = "xyes" ; then
if test x$xmatch_lib != "xno"; then
LIB_XMATCH_LIBS="-L$xmatch_lib -lxmatch"
else
LIB_XMATCH_LIBS="-lxmatch"
fi
if test x$xmatch_inc != "xno"; then
LIB_XMATCH_CFLAGS="-I$xmatch_inc"
else
LIB_XMATCH_CFLAGS=""
fi
AC_DEFINE([HAVE_XMATCH], [1], [Define to 1 to compile with xmatch support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * glib *
dnl **************************************************
AC_ARG_WITH(glib,
[ --with-glib=PKGPREFIX specify path to glib pkg config],
[glib_pkg_prefix="$withval"],
[glib_pkg_prefix=""])
AC_SUBST([LIB_GLIB_CFLAGS])
AC_SUBST([LIB_GLIB_LIBS])
if test x$glib_pkg_prefix != x""; then
OLD_PKG_CONFIG_PATH=$PKG_CONFIG_PATH
export PKG_CONFIG_PATH="$glib_pkg_prefix/lib/pkgconfig"
fi
PKG_CHECK_MODULES(glib, glib-2.0)
PKG_CHECK_MODULES(gthread, gthread-2.0)
PKG_CHECK_MODULES(gmodule, gmodule-2.0)
if test x$OLD_PKG_CONFIG_PATH != x""; then
export PKG_CONFIG_PATH="$OLD_PKG_CONFIG_PATH"
fi
LIB_GLIB_CFLAGS="${glib_CFLAGS} ${gthread_CFLAGS} ${gmodule_CFLAGS}"
LIB_GLIB_LIBS="${glib_LIBS} ${gthread_LIBS} ${gmodule_LIBS}"
enable_glib="yes"
dnl **************************************************
dnl * python *
dnl **************************************************
enable_python="no"
AZ_PYTHON_DEFAULT( )
AZ_PYTHON_ENABLE( ) # Optional
AZ_PYTHON_WITH( ) # Optional
AZ_PYTHON_PATH( ) # or AZ_PYTHON_INSIST( )
# if $PYTHON is not defined, then the following do nothing.
AZ_PYTHON_VERSION_ENSURE( [3.2] )
AZ_PYTHON_CSPEC
AZ_PYTHON_LSPEC
if $PYTHON ; then
enable_python="yes"
AC_DEFINE_UNQUOTED([PYTHON_PATH],"$PYTHON",[path to the python interpreter])
fi
dnl **************************************************
dnl * cython *
dnl **************************************************
enable_cython="yes"
AC_SUBST([CYTHON_BIN])
AC_ARG_ENABLE(cython, [ --enable-cython enable support for cython],
[enable_cython="$enableval"],[enable_cython="yes"])
AC_ARG_WITH(cython-dir,
[ --with-cython-dir=DIR basedir of cython],
[cython_dir="$withval"],[cython_dir=$PATH])
if test x$enable_cython = "xyes" ; then
AC_PATH_PROG(CYTHON_BIN, cython, "no", $cython_dir)
if test "x$CYTHON_BIN" == "xno" ; then
enable_cython="no"
fi
fi
dnl **************************************************
dnl * liblcfg *
dnl **************************************************
AC_SUBST([LIB_LCFG_CFLAGS])
AC_SUBST([LIB_LCFG_LIBS])
enable_lcfg="yes"
AC_ARG_ENABLE(lcfg, [ --enable-lcfg enable support for liblcfg],
[enable_lcfg="$enableval"],[enable_lcfg="yes"])
AC_ARG_WITH(lcfg-include,
[ --with-lcfg-include=DIR liblcfg include dir],
[lcfg_inc="$withval"],[lcfg_inc=no])
AC_ARG_WITH(lcfg-lib,
[ --with-lcfg-lib=DIR liblcfg library dir],
[lcfg_lib="$withval"],[lcfg_lib=no])
if test x$enable_lcfg = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$lcfg_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${lcfg_inc}"
fi
AC_CHECK_HEADER(lcfg/lcfg.h,[enable_lcfg=yes],[enable_lcfg=no])
if test x$enable_lcfg = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$lcfg_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${lcfg_lib}"
fi
AC_CHECK_LIB([lcfg],[lcfg_new],enable_lcfg="yes", enable_lcfg="no")
if test x$enable_lcfg = "xyes" ; then
if test x$lcfg_lib != "xno"; then
LIB_LCFG_LIBS="-L$lcfg_lib -llcfg"
else
LIB_LCFG_LIBS="-llcfg"
fi
if test x$lcfg_inc != "xno"; then
LIB_LCFG_CFLAGS="-I$lcfg_inc"
else
LIB_LCFG_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBLCFG], [1], [Define to 1 to compile with lcfg support])
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
if test x$enable_lcfg = "xno" ; then
AC_MSG_ERROR([liblcfg is missing - install it please - download from http://liblcfg.carnivore.it])
fi
dnl **************************************************
dnl * libnl *
dnl **************************************************
AC_SUBST([LIB_NL_CFLAGS])
AC_SUBST([LIB_NL_LIBS])
enable_nl="yes"
AC_ARG_ENABLE(nl, [ --enable-nl enable support for libnl],
[enable_nl="$enableval"],[enable_nl="yes"])
AC_ARG_WITH(nl-include,
[ --with-nl-include=DIR libnl include dir],
[nl_inc="$withval"],[nl_inc=no])
AC_ARG_WITH(nl-lib,
[ --with-nl-lib=DIR libnl library dir],
[nl_lib="$withval"],[nl_lib=no])
if test x$enable_nl = "xyes" ; then
OLD_CPPFLAGS=${CPPFLAGS};
if test x$nl_inc != "xno"; then
CPPFLAGS="${CPPFLAGS} -I${nl_inc}"
fi
AC_CHECK_HEADER(netlink/netlink.h,[enable_nl=yes],[enable_nl=no])
if test x$enable_nl = "xyes" ; then
OLD_LDFLAGS=${LDFLAGS}
if test x$nl_lib != "xno"; then
LDFLAGS="${LDFLAGS} -L${nl_lib}"
fi
LDFLAGS="${LDFLAGS} -lnl -lnl-genl -lnl-nf"
AC_CHECK_LIB([nl-route],[rtnl_link_get_ifindex],enable_nl="yes", enable_nl="no")
if test x$enable_nl = "xyes" ; then
if test x$nl_lib != "xno"; then
LIB_NL_LIBS="-L$nl_lib -lnl -nl-genl -lnl-route -lnl-nf"
else
LIB_NL_LIBS="-lnl -nl-genl -lnl-route -lnl-nf"
fi
if test x$nl_inc != "xno"; then
LIB_NL_CFLAGS="-I$nl_inc"
else
LIB_NL_CFLAGS=""
fi
AC_DEFINE([HAVE_LIBNL], [1], [Define to 1 to compile with nl support])
libnl_rtnl_link_alloc_cache_argc="unknown"
dnl 2 args
if test $libnl_rtnl_link_alloc_cache_argc = "unknown"; then
AC_MSG_CHECKING([if rtnl_link_alloc_cache takes 2 args.])
AC_COMPILE_IFELSE([
AC_LANG_PROGRAM([[
#include <netlink/route/link.h>
]],[[
if(0 != rtnl_link_alloc_cache(NULL, NULL))
return 1;
]])
],[
AC_MSG_RESULT([yes])
libnl_rtnl_link_alloc_cache_argc=2
AC_DEFINE([LIBNL_RTNL_LINK_ALLOC_CACHE_ARGC], 2, [Number of args for rtnl_link_alloc_cache (old version)])
],[
AC_MSG_RESULT([no])
])
fi
if test $libnl_rtnl_link_alloc_cache_argc = "unknown"; then
AC_MSG_CHECKING([if rtnl_link_alloc_cache takes 3 args.])
AC_COMPILE_IFELSE([
AC_LANG_PROGRAM([[
#include <netlink/route/link.h>
]],[[
if(0 != rtnl_link_alloc_cache(NULL, 0, NULL))
return 1;
]])
],[
AC_MSG_RESULT([yes])
AC_DEFINE([LIBNL_RTNL_LINK_ALLOC_CACHE_ARGC], 3, [Number of args for rtnl_link_alloc_cache (new version)])
libnl_rtnl_link_alloc_cache_argc=3
],[
AC_MSG_RESULT([no])
])
fi
fi
fi
CPPFLAGS=${OLD_CPPFLAGS}
LDFLAGS=${OLD_LDFLAGS}
fi
dnl **************************************************
dnl * libcurl *
dnl **************************************************
AC_SUBST([LIB_CURL_CFLAGS])
AC_SUBST([LIB_CURL_LIBS])
enable_curl="yes"
AC_ARG_ENABLE(curl, [ --enable-curl enable support for libcurl],
[enable_curl="$enableval"],[enable_curl="yes"])
AC_ARG_WITH(curl-config,
[ --with-curl-config=BIN curl-config binary path],
[curl_config_dir="$withval"], [curl_config_dir=$PATH])
if test x$enable_curl = "xyes" ; then
AC_PATH_PROG(CURL_CONFIG_BIN, curl-config, "no", $curl_config_dir)
if test "x$CURL_CONFIG_BIN" == "xno" ; then
enable_curl="no"
else
LIB_CURL_CFLAGS=$($CURL_CONFIG_BIN --cflags)
LIB_CURL_LIBS=$($CURL_CONFIG_BIN --libs)
fi
fi
dnl **************************************************
dnl * libloudmouth *
dnl **************************************************
AC_SUBST([LIB_LOUDMOUTH_CFLAGS])
AC_SUBST([LIB_LOUDMOUTH_LIBS])
enable_loudmouth="no"
dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
dnl [ACTION-IF-NOT-FOUND])
PKG_CHECK_MODULES(loudmouth, loudmouth,[enable_loudmouth="yes"],[enable_loudmouth="no"])
if test x$enable_loudmouth = "xno"; then
PKG_CHECK_MODULES(loudmouth, loudmouth-1.0,[enable_loudmouth="yes"],[enable_loudmouth="no"])
fi
if test x$enable_loudmouth = "xyes"; then
LIB_LOUDMOUTH_CFLAGS=${loudmouth_CFLAGS}
LIB_LOUDMOUTH_LIBS=${loudmouth_LIBS}
fi
dnl **************************************************
dnl * module building *
dnl **************************************************
AM_CONDITIONAL([BUILD_CSPM_MODULE], [ test x$enable_cspm = "xyes" ])
AM_CONDITIONAL([BUILD_EMU_MODULE], [ test x$enable_emu = "xyes" ])
AM_CONDITIONAL([BUILD_NFQ_MODULE], [ test x$enable_netfilter_queue = "xyes" ])
AM_CONDITIONAL([BUILD_XMATCH_MODULE], [ test x$enable_xmatch = "xyes" ])
AM_CONDITIONAL([BUILD_PCAP_MODULE], [ test x$enable_pcap = "xyes" ])
AM_CONDITIONAL([BUILD_LOUDMOUTH_MODULE], [ test x$enable_loudmouth = "xyes" ])
AM_CONDITIONAL([BUILD_PYTHON_MODULE], [ test x$enable_python = "xyes" && test x$enable_cython = "xyes" ])
AM_CONDITIONAL([BUILD_CURL_MODULE], [ test x$enable_curl = "xyes" ])
AM_CONDITIONAL([BUILD_NL_MODULE], [ test x$enable_nl = "xyes" ])
AM_CONDITIONAL([BUILD_PCAP_MODULE], [ test x$enable_pcap = "xyes" ])
dnl **************************************************
dnl * debug & performance *
dnl **************************************************
AC_MSG_CHECKING(whether you are looking for 'performance')
AC_ARG_ENABLE([performance],
[AS_HELP_STRING(--enable-performance, tries to kill all logging activity to save some cycles [[default=no]])],
[enable_performance=${enableval}], [enable_performance="no"])
if test x"$enable_performance" = "xyes"; then
AC_DEFINE([PERFORMANCE], 1, [I'm looking for performance])
else
AC_DEFINE([NPERFORMANCE], 1, [I'm ... capacity instead of spoiler])
fi
AC_MSG_RESULT($enable_performance)
AC_SUBST([CFLAGS_DEBUG])
AC_MSG_CHECKING(whether debug code generation should be enabled)
AC_ARG_ENABLE([debug],
[AS_HELP_STRING(--enable-debug, enable debug code generation [[default=yes]])],
[enable_debug=${enableval}], [enable_debug="yes"])
if test x"$enable_debug" = "xyes" && test x"$enable_performance" = "xno"; then
AC_DEFINE([DEBUG], 1, [enable debug code generation])
CFLAGS_DEBUG="-g"
else
enable_debug="no"
AC_DEFINE([NDEBUG], 1, [don't enable debug code generation])
CFLAGS_DEBUG=""
fi
AC_MSG_RESULT($enable_debug)
dnl **************************************************
dnl * Werror *
dnl **************************************************
AC_MSG_CHECKING(whether you want Werror)
AC_ARG_ENABLE([werror],
[AS_HELP_STRING(--enable-werror, compiler warnings are errors [[default=yes]])],
[enable_werror=${enableval}], [enable_werror="yes"])
if test x"$enable_werror" = "xyes"; then
CFLAGS_DEFAULT="-Werror"
else
CFLAGS_DEFAULT=""
fi
AC_MSG_RESULT($enable_werror)
dnl **************************************************
dnl * default cflags *
dnl **************************************************
AC_SUBST([CFLAGS_DEFAULT])
CFLAGS_LFS=`getconf LFS_CFLAGS`
CFLAGS_DEFAULT="-Wall ${CFLAGS_DEFAULT}"
CFLAGS="${CFLAGS} -D_GNU_SOURCE ${LIB_EV_CFLAGS} ${LIB_GLIB_CFLAGS} ${LIB_LCFG_CFLAGS} ${CFLAGS_DEFAULT} -Wstrict-prototypes ${CFLAGS_DEBUG} ${CFLAGS_LFS}"
dnl **************************************************
dnl * revision *
dnl **************************************************
#AC_PATH_PROG(GIT_BIN, git, "no")
#if test "x$GIT_BIN" != "xno" ; then
# REV="\`$GIT_BIN show-ref heads/master | cut -b 1-6\`"
# AC_DEFINE([DIONAEA_GIT_VERSION], [$REV], [this is the git revision])
# CFLAGS="${CFLAGS} -DDIONAEA_REV=$REV..."
#fi
dnl **************************************************
dnl * sanity *
dnl * make sure everything which is required exists *
dnl **************************************************
fail="no"
for i in emu ev curl cython python glib udns ssl; do
AC_MSG_CHECKING(DEPENDENCY $i)
v=enable_$i
x=$(eval echo $`echo $v`)
if test "x$x" != "xyes"; then
AC_MSG_WARN(no)
fail="yes"
else
AC_MSG_RESULT(yes)
fi
done
AC_MSG_CHECKING(if all required dependencies are installed properly)
if test "x$fail" != "xno"; then
AC_MSG_ERROR([no - better read the documentation])
else
AC_MSG_RESULT([yes - well done, you read the documentation])
fi
AC_DEFUN([AC_DEFINE_DIR], [
prefix_NONE=
exec_prefix_NONE=
test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix
test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix
dnl In Autoconf 2.60, ${datadir} refers to ${datarootdir}, which in turn
dnl refers to ${prefix}. Thus we have to use `eval' twice.
eval ac_define_dir="\"[$]$2\""
eval ac_define_dir="\"$ac_define_dir\""
AC_SUBST($1, "$ac_define_dir")
AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3])
test "$prefix_NONE" && prefix=NONE
test "$exec_prefix_NONE" && exec_prefix=NONE
])
AC_DEFINE_DIR(PREFIX, prefix, [default working directory])
AC_DEFINE_DIR(LOCALESTATEDIR, localstatedir, [where to put logs etc])
AC_DEFINE_DIR(LIBDIR, libdir, [where to look for plugins])
AC_DEFINE_DIR(SYSCONFDIR, [sysconfdir], [System configuration dir])
AC_DEFINE_DIR(DATADIR, [datadir], [The directory for installing idiosyncratic read-only architecture-independent data.])
AC_DEFINE_DIR(DATAROOTDIR, [datarootdir], [The root of the directory tree for read-only architecture-independent data files.])