File: configure.ac

package info (click to toggle)
milter-greylist 4.5.11-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,500 kB
  • ctags: 1,794
  • sloc: ansic: 17,049; yacc: 2,158; lex: 585; sh: 536; makefile: 155
file content (1360 lines) | stat: -rw-r--r-- 44,118 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# $Id: configure.ac,v 1.289 2014/02/21 08:11:44 manu Exp $
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT(milter-greylist, 4.5.11, manu@netbsd.org)
AC_CONFIG_SRCDIR([milter-greylist.c])
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC
AC_PROG_LEX
AC_PROG_YACC
AC_PROG_INSTALL
AC_CHECK_PROGS(MKDEP, mkdep)
AC_CHECK_PROGS(RM, rm)
AC_CHECK_PROGS(MV, mv)
AC_CHECK_PROGS(TEST, test)
AC_CHECK_PROGS(SED, sed)
AC_CHECK_PROGS(TRUE, true)
AC_CHECK_PROGS(TOUCH, touch)


# Try to configure for override of packaging metadata
_FIX_PACKAGE_NAME=""
_FIX_PACKAGE_VERSION=""
_FIX_PACKAGE_STRING=""
_FIX_PACKAGE_URL=""
_FIX_PACKAGE_BUGREPORT=""

AC_ARG_WITH(package-name,
	[  --with-package-name=STRING  Redefine packaging metadata (name)],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_NAME provided, using default" >&2
	else
	    PACKAGE_NAME="$withval"
	    PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
	    _FIX_PACKAGE_NAME=y
            _FIX_PACKAGE_STRING=y
	fi])

AC_ARG_WITH(package-version,
	[  --with-package-version=STRING  Redefine packaging metadata (version)],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_VERSION provided, using default" >&2
	else
	    PACKAGE_VERSION="$withval"
	    PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
            _FIX_PACKAGE_VERSION=y
            _FIX_PACKAGE_STRING=y
	fi])

PACKAGE_VERSION_UPSTREAM="$PACKAGE_VERSION"
AC_ARG_WITH(package-version-suffix,
	[  --with-package-version-suffix=STRING  Vendor-specific suffix to version or release],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_VERSION_SUFFIX provided, not appending" >&2
	    PACKAGE_VERSION_SUFFIX=""
	else
	    PACKAGE_VERSION_SUFFIX="$withval"
	    PACKAGE_VERSION="$PACKAGE_VERSION_UPSTREAM$PACKAGE_VERSION_SUFFIX"
	    PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
            _FIX_PACKAGE_VERSION=y
            _FIX_PACKAGE_STRING=y
	fi])

AC_ARG_WITH(package-string,
	[  --with-package-string=STRING  Redefine packaging metadata (name and version+suffix)],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_STRING provided, using default" >&2
	else
	    PACKAGE_STRING="$withval"
            _FIX_PACKAGE_STRING=y
	fi])

AC_ARG_WITH(package-bugreport,
	[  --with-package-bugreport=STRING  Redefine packaging metadata (email)],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_BUGREPORT provided, using default" >&2
	else
	    PACKAGE_BUGREPORT="$withval"
            _FIX_PACKAGE_BUGREPORT=y
	fi])

AC_ARG_WITH(package-url,
	[  --with-package-url=STRING  Redefine packaging metadata (distro URL)],
	[if test x"$withval" = x; then
	    echo "ERROR: No PACKAGE_URL provided, using default" >&2
	else
	    PACKAGE_URL="$withval"
            _FIX_PACKAGE_URL=y
	fi])

m4_define([__AC_UNDEFINE],[_AC_DEFINE_UNQUOTED([#ifdef $1
 #undef $1
#endif])])

if test x"$_FIX_PACKAGE_NAME" = xy; then
    __AC_UNDEFINE([PACKAGE_NAME])
    AC_DEFINE_UNQUOTED([PACKAGE_NAME], ["$PACKAGE_NAME"], [Packaging metadata: distro source code name])
fi

if test x"$_FIX_PACKAGE_VERSION" = xy; then
    __AC_UNDEFINE([PACKAGE_VERSION])
    AC_DEFINE_UNQUOTED([PACKAGE_VERSION], ["$PACKAGE_VERSION"], [Packaging metadata: distro source code version])
fi
if test x"$_FIX_PACKAGE_STRING" = xy; then
    __AC_UNDEFINE([PACKAGE_STRING])
    AC_DEFINE_UNQUOTED([PACKAGE_STRING], ["$PACKAGE_STRING"], [Packaging metadata: distro source code name+version])
fi
if test x"$_FIX_PACKAGE_URL" = xy; then
    __AC_UNDEFINE([PACKAGE_URL])
    AC_DEFINE_UNQUOTED([PACKAGE_URL], ["$PACKAGE_URL"], [Packaging metadata: distro contact])
fi
if test x"$_FIX_PACKAGE_BUGREPORT" = xy; then
    __AC_UNDEFINE([PACKAGE_BUGREPORT])
    AC_DEFINE_UNQUOTED([PACKAGE_BUGREPORT], ["$PACKAGE_BUGREPORT"], [Packaging metadata: distro contact])
fi

AC_DEFINE_UNQUOTED([PACKAGE_VERSION_UPSTREAM], ["$PACKAGE_VERSION_UPSTREAM"], [Packaging metadata: upstream source code version])
AC_DEFINE_UNQUOTED([PACKAGE_VERSION_SUFFIX], ["$PACKAGE_VERSION_SUFFIX"], [Packaging metadata: Vendor-specific suffix to version or release])



# Check that the compiler won't bug us for -Wall
AC_MSG_CHECKING([if compiler accepts -Wall])
SAVEDCFLAGS=$CFLAGS
CFLAGS=$CFLAGS" -Wall"
wall="no"
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], 
    [wall="yes"; SAVEDCFLAGS=$CFLAGS; efl=$efl" -Wall"])
AC_MSG_RESULT([$wall])
CFLAGS=$SAVEDCFLAGS

# Check that the compiler won't bug us for -Werror
AC_MSG_CHECKING([if compiler accepts -Werror])
SAVEDCFLAGS=$CFLAGS
CFLAGS=$CFLAGS" -Werror"
werror="no"
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], 
    [Werror="yes"; efl=$efl" -Werror"])
AC_MSG_RESULT([$werror])
CFLAGS=$SAVEDCFLAGS

NORPSAVEDLDFLAGS=$LDFLAGS

# Any linker will probably accept -L
rpath="-L"

# Check if the linker accepts -R
AC_MSG_CHECKING([if ld accepts -R])
SAVEDLDFLAGS=$LDFLAGS
LDFLAGS=$LDFLAGS" -Wl,-R=/"
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], 
    [rpath="-R"; ldrpath=yes], [ldrpath=no])
LDFLAGS=$SAVEDLDFLAGS
AC_MSG_RESULT([$ldrpath])

# Check if the linker accepts --rpath 
AC_MSG_CHECKING([if ld accepts --rpath])
SAVEDLDFLAGS=$LDFLAGS
LDFLAGS=$LDFLAGS" -Wl,--rpath=/"
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], 
    [rpath="--rpath="; ldrpath=yes], [ldrpath=no])
LDFLAGS=$SAVEDLDFLAGS
AC_MSG_RESULT([$ldrpath])

# Path to required packages
AC_ARG_WITH(db,
        [  --with-db=DIR   Find Berkeley DB in DIR],
        [CFLAGS=$CFLAGS" -I$withval/include"
            LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"])
AC_ARG_WITH(libmilter, 
	[  --with-libmilter=DIR   Find libmilter in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include" 
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"])
AC_ARG_WITH(libpthread, 
	[  --with-libpthread=DIR  Find libpthread in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include" 
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"])

# Which BIND resolver to use?..
use_libbind=no
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(libbind, 
	[  --with-libbind=DIR	Find libbind in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include/bind -I$withval/include"
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    AC_CHECK_LIB(bind, bind9_getaddresses, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		SAVEDLIBS="-lbind $LIBS"
		use_libbind=yes
	    ], [AC_CHECK_LIB(bind9, bind9_getaddresses, [
                SAVEDLDFLAGS=$LDFLAGS
                SAVEDCFLAGS=$CFLAGS
                SAVEDLIBS="-lbind9 $LIBS"
                use_libbind=yes
	    ], [echo "neither -lbind nor -lbind9 worked. check config.log for details"
		exit 1;])
	 ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

# OpenSSL, may be needed by itself and for curl, ldap, dkim/opendkim, ...
dir_openssl=""
LDFLAGS_openssl=""
LIBS_openssl_ssl=""
LIBS_openssl_crypto=""
LIBS_openssl_ssh2=""
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(openssl,
	[  --with-openssl(=DIR)  Find OpenSSL in DIR],
	[if test x"$withval" = xyes; then withval=""; fi
	 if test -z "$withval"; then           
            for _DIR in "/usr/local/ssl" "/usr/local" "/usr" "/usr/sfw" "/opt/sfw" "/"; do
                if test -z "$withval" -a -e "$_DIR/lib/libssl.so"; then
                    withval="$_DIR";          
                    echo "autodetected OpenSSL library directory: $_DIR"
                fi
            done
	fi
	if test -z "$withval"; then
	    echo "Error: path for OpenSSL libraries not provided and not autodetected!"
	    exit 1
        fi
	LDFLAGS_openssl="-L$withval/lib -Wl,$rpath$withval/lib"
	SAVEDLDFLAGS=$LDFLAGS" $LDFLAGS_openssl"
        SAVEDCFLAGS=$CFLAGS" -I$withval/include"
	dir_openssl="$withval"
	LIBS_openssl_ssl="-lssl"
	LIBS_openssl_crypto="-lcrypto"
	SAVEDLIBS="$LIBS_openssl_ssl $LIBS_openssl_crypto $LIBS"
	AC_CHECK_LIB(c -lssh2, main, [
	    LIBS_openssl_ssh2="-lssh2 -lz"
	    echo "autodetected libssh2: $LIBS_openssl_ssh2"
	    SAVEDLIBS="$LIBS_openssl_ssh2 $SAVEDLIBS"],[])
	])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(openssl-static,
	[  --with-openssl-static(=DIR)  Find OpenSSL in DIR and link statically],
	[if test x"$withval" = xyes; then withval=""; fi
	if test -z "$withval"; then
            for _DIR in "/usr/local/ssl" "/usr/local" "/usr" "/usr/sfw" "/opt/sfw" "/"; do
                if test -z "$withval" -a -e "$_DIR/lib/libssl.a"; then
                    withval="$_DIR";          
                    echo "autodetected OpenSSL-static library directory: $_DIR"
                fi
            done
	fi
	if test -z "$withval"; then
	    echo "Error: path for OpenSSL static libraries not provided and not autodetected!"
	    exit 1
        fi
	LDFLAGS_openssl=""
	SAVEDLDFLAGS=$LDFLAGS" $LDFLAGS_openssl"
	SAVEDCFLAGS=$CFLAGS" -I$withval/include"
	dir_openssl="$withval"
	LIBS_openssl_ssl="$withval/lib/libssl.a"
	LIBS_openssl_crypto="$withval/lib/libcrypto.a"
	SAVEDLIBS="$LIBS_openssl_ssl $LIBS_openssl_crypto $LIBS"
	_lib_ssh2=""
	for _DIR in "/usr/local/ssl" "/usr/local" "/usr" "/usr/sfw" "/opt/sfw" "/"; do
	    if test -z "$_lib_ssh2" -a -e "$_DIR/lib/libssh2.a"; then
		_lib_ssh2="$_DIR/lib/libssh2.a"
	    fi
	done
	if test -z "$_lib_ssh2"; then
	    _lib_ssh2="-lssh2"
	fi
	AC_CHECK_LIB(c $_lib_ssh2, main, [
	    LIBS_openssl_ssh2="$_lib_ssh2 -lz"
	    echo "autodetected libssh2: $LIBS_openssl_ssh2"
	    SAVEDLIBS="$LIBS_openssl_ssh2 $SAVEDLIBS"],[])
	unset _lib_ssh2
	])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

# OpenLDAP may be used instead of curl to access multiple
# (failover) LDAP catalog servers
dir_openldap=""
LDFLAGS_openldap=""
LIBS_openldap=""
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(openldap, 
	[  --with-openldap(=DIR)  Find OpenLDAP in DIR],
	[if test x"$withval" = xyes; then withval=""; fi
        if test -z "$withval"; then
            for _DIR in "/usr/local" "/usr" "/usr/sfw" "/opt/sfw" "/"; do
                if test -z "$withval" -a -e "$_DIR/lib/libldap_r-2.4.so" || \
		   test -z "$withval" -a -e "$_DIR/lib/libldap_r.so"; then
                    withval="$_DIR";
                    echo "autodetected OpenLDAP library directory: $_DIR"
                fi
            done
        fi
	if test -z "$withval"; then
	    echo "Error: path for OpenLDAP libraries not provided and not autodetected!"
	    exit 1
        fi
	    SAVEDCFLAGS=$CFLAGS" -I$withval/include -DUSE_LDAP -DLDAP_DEPRECATED" 
	    LDFLAGS_openldap="-L$withval/lib -Wl,$rpath$withval/lib"
	    SAVEDLDFLAGS=$LDFLAGS" $LDFLAGS_openldap"
	    dir_openldap="$withval"
	    if test -d "$dir_openldap/include/openldap"; then
		### Promote this include path
		SAVEDCFLAGS="-I$dir_openldap/include/openldap $SAVEDCFLAGS"
	    fi
            ### Pick variants of more important libs that may be needed by LDAP
            _ldap_LIBS="-lldap_r-2.4 -llber-2.4"
            AC_CHECK_LIB(c $_ldap_LIBS, ldap_search, [
               SAVEDLIBS="$_ldap_LIBS $LIBS"
	       LIBS_openldap="$_ldap_LIBS"
               ],[_ldap_LIBS="-lldap_r -llber"
                       AC_CHECK_LIB([c $_ldap_LIBS], ldap_search, [
                       SAVEDLIBS="$_ldap_LIBS $LIBS"
		       LIBS_openldap="$_ldap_LIBS"
		       ],[echo "Error: no OpenLDAP library names located!"; exit 1;])
	       ])
	])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

# Try to configure for openldap-static
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(openldap-static,
       [  --with-openldap-static(=DIR)  Find OpenLDAP in DIR and link statically],
       [if test x"$withval" = xyes; then withval=""; fi
	if test -z "$withval"; then
	    for _DIR in "/usr/local" "/usr" "/usr/sfw" "/opt/sfw" "/"; do
		if test -z "$withval" -a -e "$_DIR/lib/libldap_r-2.4.a" || \
		   test -z "$withval" -a -e "$_DIR/lib/libldap_r.a"; then
		    withval="$_DIR";
		    echo "autodetected OpenLDAP library directory: $_DIR"
		fi
	    done
	fi
	if test -z "$withval"; then
	    echo "Error: path for OpenLDAP static libraries not provided and not autodetected!"
	    exit 1
        fi
	   dir_openldap="$withval"
	   LDFLAGS_openldap=""
	   SAVEDLDFLAGS=$LDFLAGS" $LDFLAGS_openldap"
	   SAVEDCFLAGS=$CFLAGS" -I$withval/include -DUSE_LDAP -DLDAP_DEPRECATED"
	   SAVEDLIBS="$LIBS"
	   if test -d "$dir_openldap/include/openldap"; then
		### Promote this include path
		SAVEDCFLAGS="-I$dir_openldap/include/openldap $SAVEDCFLAGS"
	   fi
	   ### Lower-priority variants first; in case of conflicts use the later one
	   if test -e "$withval/lib/libldap_r.a"; then
		LIBS_openldap="$withval/lib/libldap_r.a $withval/lib/liblber.a"
	   fi
	   if test -e "$withval/lib/libldap_r-2.4.a"; then
		LIBS_openldap="$withval/lib/libldap_r-2.4.a $withval/lib/liblber-2.4.a"
	   fi
	   if test -z "$LIBS_openldap"; then
		echo "Error: searched for OpenLDAP static libraries in dir '$withval/lib', not found"
		exit 1
	   fi
	   LIBS_openldap_add=""
	   ### More generic libs
	   for L in nsl socket gss dl resolv; do
		AC_CHECK_LIB(c -l$L, main, [LIBS_openldap_add="-l$L $LIBS_openldap_add"])
	   done
	   ### Pick variants of more important libs that may be needed by LDAP
	   _ldap_LIBS="$LIBS_openldap"
           AC_CHECK_LIB(c $_ldap_LIBS, ldap_search, [
               SAVEDLIBS="$_ldap_LIBS $LIBS"
               ],[_ldap_LIBS="$LIBS_openldap $LIBS_openldap_add -lsasl"
		       AC_CHECK_LIB([c $_ldap_LIBS], ldap_search, [
                       SAVEDLIBS="$_ldap_LIBS $LIBS"
               ],[_ldap_LIBS="$LIBS_openldap $LIBS_openldap_add -lsasl2"
		       AC_CHECK_LIB([c $_ldap_LIBS], ldap_search, [
                       SAVEDLIBS="$_ldap_LIBS $LIBS"
               ],[_ldap_LIBS="$LIBS_openldap $LIBS_openldap_add -lsasl $LDFLAGS_openssl $LIBS_openssl_crypto $LIBS_openssl_ssl"
		       AC_CHECK_LIB([c $_ldap_LIBS], ldap_search, [
                       SAVEDLIBS="$_ldap_LIBS $LIBS"
               ],[_ldap_LIBS="$LIBS_openldap $LIBS_openldap_add -lsasl2 $LDFLAGS_openssl $LIBS_openssl_crypto $LIBS_openssl_ssl"
		       AC_CHECK_LIB([c $_ldap_LIBS], ldap_search, [
                       SAVEDLIBS="$_ldap_LIBS $LIBS"
        	   ], [echo "OpenLDAP static libraries libldap_r.a and/or liblber.a, or their shared";
		       echo "  dependencies (SASL, OpenSSL, GSS) were not found, check config.log for details";
            	       echo "Remove --with-openldap-static to build without LDAP support, or";
		       echo "  try --with-openldap for the shared library, or";
		       echo "  try --with-curl for an alternate solution";
            	       exit 1;])
	       ])
	       ])
	       ])
       ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

use_libcurl=no
AC_ARG_WITH(libcurl, 
	[  --with-libcurl=DIR  Find libcurl in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include -DUSE_CURL" 
	    LIBS="-lcurl $LIBS"
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    use_libcurl=yes])

# Try to configure for libcurl-static
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
SAVEDLIBS=$LIBS
AC_ARG_WITH(libcurl-static,
       [  --with-libcurl-static=DIR  Find libcurl in DIR and link statically],
       [SAVEDLDFLAGS=$LDFLAGS" -L$withval/lib"
	   SAVEDCFLAGS=$CFLAGS" -I$withval/include -DUSE_CURL"
	   _lib_idn=""
	   AC_CHECK_LIB(idn, main, [echo "autodetected libidn, will use with libcurl"
	       _lib_idn="-lidn"
	       SAVEDLIBS=" $_lib_idn $LIBS"])
	   LIBS=$SAVEDLIBS
           AC_CHECK_LIB(curl $_lib_idn, Curl_connect, [
               SAVEDLDFLAGS=$LDFLAGS
               SAVEDCFLAGS=$CFLAGS
               SAVEDLIBS="$withval/lib/libcurl.a $LIBS"
	       use_libcurl=yes
               ],[AC_CHECK_LIB([curl $_lib_idn $LIBS_openssl_ssh2],  Curl_connect, [
                       SAVEDLDFLAGS=$LDFLAGS
                       SAVEDCFLAGS=$CFLAGS
                       SAVEDLIBS="$withval/lib/libcurl.a $LIBS_openssl_ssh2 $LIBS"
		       use_libcurl=yes
               ], [echo "static library libcurl.a and/or libssh2.a not found, check config.log for details";
                   echo "Remove --with-libcurl-static to build without CURL support ";
		   echo "  or try --with-libcurl for the shared library";
                   exit 1;])
       ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS
LIBS=$SAVEDLIBS

AC_ARG_WITH(libGeoIP, 
	[  --with-libGeoIP=DIR  Find libGeoIP in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include -DUSE_GEOIP" 
	    LIBS="-lGeoIP $LIBS"
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"])
AC_ARG_WITH(libdmalloc,
	[  --with-libdmalloc=DIR  Find libdmalloc in DIR],
	[CFLAGS=$CFLAGS" -I$withval/include -DUSE_DMALLOC" 
	    LIBS="-ldmalloc $LIBS"
	    LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"])

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h syslog.h unistd.h sys/param.h netdb.h getopt.h sys/cdefs.h arpa/nameser.h stdbool.h sys/queue.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_HEADER_TIME

# Do we have res_state type? Tru64 UNIX doesn't have...
AC_CHECK_TYPES([res_state],[],[],[
		#include <sys/types.h>
		#include <netinet/in.h>
		#include <arpa/nameser.h>
		#include <resolv.h>
])

# Do we need -lpthread with -lbind?
if test $use_libbind = yes ; then
	AC_MSG_CHECKING([if -lbind needs -lpthread to link])
	lbind_needs_lpthread=no
	SAVEDLIBS=$LIBS
	AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], 
	    [],
	    [
		LIBS="-lpthread $LIBS"
		AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
		    [lbind_needs_lpthread=yes]);
	    ]);
	if test $lbind_needs_lpthread = yes ; then
		SAVEDLIBS=$LIBS
	fi
	AC_MSG_RESULT($lbind_needs_lpthread)
	LIBS=$SAVEDLIBS
fi

# Do we need -lcrypto with -lcurl?
if test $use_libcurl = yes ; then
	AC_MSG_CHECKING([if -lcurl needs -lcrypto to link and run])
	lcurl_needs_lcrypto=no
	SAVEDLIBS=$LIBS
	SAVEDLDFLAGS=$LDFLAGS
	AC_RUN_IFELSE([AC_LANG_PROGRAM([],[])], 
	    [],
	    [LDFLAGS="$LDFLAGS $LDFLAGS_openssl"
		LIBS="$LIBS_openssl_crypto $LIBS"
		AC_RUN_IFELSE([AC_LANG_PROGRAM([],[])],
		    [lcurl_needs_lcrypto=yes
		    SAVEDLIBS=$LIBS],
			[echo "Required libcrypto not found for libcurl.";
			 echo "  Use --with-openssl=DIR to provide the OpenSSL installation root.";
                	 exit 1;])
	    ])
	if test $lcurl_needs_lcrypto = yes ; then
		SAVEDLIBS=$LIBS
		SAVEDLDFLAGS=$LDFLAGS
	fi
	AC_MSG_RESULT($lcurl_needs_lcrypto)
	LIBS=$SAVEDLIBS
	LDFLAGS=$SAVEDLDFLAGS
fi

# Checks for library functions.
AC_FUNC_FORK
AC_FUNC_STRFTIME
AC_FUNC_MEMCMP
AC_FUNC_SELECT_ARGTYPES
AC_FUNC_SETVBUF_REVERSED
AC_FUNC_STAT
AC_CHECK_FUNCS([bzero gettimeofday malloc inet_ntoa strerror select socket initgroups strlcat vsyslog strcasestr getaddrinfo getnameinfo])


# Check for libpthread. On FreeBSD, the libc_r does the job.
# On digitalUNIX, libpthreads (with a trailing s) is the library to use
# FIXME: FreeBSD 4.x wants -pthread
AC_CHECK_LIB([pthread], [pthread_create], 
    [LIBS="$LIBS -lpthread"],
    [AC_CHECK_LIB([c_r], [pthread_create], 
        [LIBS="$LIBS -lc_r"],
	[AC_CHECK_LIB([pthreads -lpthread], [pthread_create],
            [LIBS="$LIBS -lpthreads -lpthread"],
                [echo "Required libpthread not found. Use --with-libpthread"; 
                 exit 1;])
	])
     ])

# Try to configure for libspf2
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libspf2,
       [  --with-libspf2=DIR  Find libspf2 in DIR],
       [LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
           CFLAGS=$CFLAGS" -I$withval/include"
           AC_CHECK_LIB(spf2, SPF_server_new, [
               SAVEDLDFLAGS=$LDFLAGS
               SAVEDCFLAGS=$CFLAGS
               LIBS=$LIBS" -lspf2"
               AC_DEFINE([HAVE_SPF2], [], [we use libspf2])
               ],[AC_CHECK_LIB([spf2 -lintl],  SPF_server_new, [
                       SAVEDLDFLAGS=$LDFLAGS
                       SAVEDCFLAGS=$CFLAGS
                       LIBS=$LIBS" -lspf2 -lintl"
                       AC_DEFINE([HAVE_SPF2], [], [we use libspf2])
               ], [echo "libspf2 not found, check config.log for details"
                   echo "Remove --with-libspf2 to build without SPF support"
                   exit 1;])
       ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libspf2-static
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libspf2-static,
       [  --with-libspf2-static=DIR  Find libspf2 in DIR and link statically],
       [LDFLAGS=$LDFLAGS" -L$withval/lib"
	   CFLAGS=$CFLAGS" -I$withval/include"
           AC_CHECK_LIB(spf2, SPF_server_new, [
               SAVEDLDFLAGS=$LDFLAGS
               SAVEDCFLAGS=$CFLAGS
               LIBS=$LIBS" $withval/lib/libspf2.a"
               AC_DEFINE([HAVE_SPF2], [], [we use libspf2])
               ],[AC_CHECK_LIB([spf2 -lintl],  SPF_server_new, [
                       SAVEDLDFLAGS=$LDFLAGS
                       SAVEDCFLAGS=$CFLAGS
                       LIBS=$LIBS" $withval/lib/libspf2.a -lintl"
                       AC_DEFINE([HAVE_SPF2], [], [we use libspf2])
               ], [echo "static library libspf2.a not found, check config.log for details"
                   echo "Remove --with-libspf2-static to build without SPF support "
		   echo "  or try --with-libspf2 for the shared library"
                   exit 1;])
       ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libspf2 1.0
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libspf2_10,
       [  --with-libspf2_10=DIR  Find libspf2 1.0 in DIR],
       [LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
           CFLAGS=$CFLAGS" -I$withval/include"
           AC_CHECK_LIB(spf2, SPF_create_config, [
               SAVEDLDFLAGS=$LDFLAGS
               SAVEDCFLAGS=$CFLAGS
               LIBS=$LIBS" -lspf2"
               AC_DEFINE([HAVE_SPF2_10], [], [we use libspf2 1.0])
               ],[AC_CHECK_LIB([spf2 -lintl],  SPF_create_config, [
                       SAVEDLDFLAGS=$LDFLAGS
                       SAVEDCFLAGS=$CFLAGS
                       LIBS=$LIBS" -lspf2 -lintl"
                       AC_DEFINE([HAVE_SPF2_10], [], [we use libspf2 1.0])
               ], [echo "libspf2 1.0 not found, check config.log for details"
                   echo "Remove --with-libspf2_10 to build without SPF support"
                   exit 1;])
       ])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libspf_alt
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libspf_alt, 
	[  --with-libspf_alt=DIR  Find libspf_alt in DIR],
	[LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    CFLAGS=$CFLAGS" -I$withval/include"
	    AC_CHECK_LIB(spf_alt, SPF_create_config, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		LIBS=$LIBS" -lspf_alt"
		AC_DEFINE([HAVE_SPF_ALT], [], [we use libspf_alt])
		],[AC_CHECK_LIB([spf_alt -lintl],  SPF_create_config, [
			SAVEDLDFLAGS=$LDFLAGS
			SAVEDCFLAGS=$CFLAGS
			LIBS=$LIBS" -lspf_alt -lintl"
			AC_DEFINE([HAVE_SPF_ALT], [], [we use libspf_alt])
		], [echo "libspf_alt not found, check config.log for details"
		    echo "Remove --with-libspf_alt to build without SPF support"
		    exit 1;])
	])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libspf
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libspf, 
	[  --with-libspf=DIR  Find libspf in DIR],
	[LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    CFLAGS=$CFLAGS" -I$withval/include"
	    AC_CHECK_LIB(spf, SPF_init, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		LIBS=$LIBS" -lspf"
		AC_DEFINE([HAVE_SPF], [], [we use libspf])
		], [echo "libspf not found, check config.log for details"
		    echo "Remove --with-libspf to build without SPF support"
		    exit 1;])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libdkim
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libdkim, 
	[  --with-libdkim=DIR  Find Sendmail's libdkim in DIR],
	[LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    CFLAGS=$CFLAGS" -I$withval/include"
	    AC_CHECK_LIB([dkim -lcrypto], dkim_init, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		LIBS=$LIBS" -ldkim -lcrypto"
		AC_DEFINE([USE_DKIM], [], [we use libdkim])
		], [echo "libdkim not found, check config.log for details"
		    echo "Remove --with-dkim to build without DKIM support"
		    exit 1;])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libopendkim
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libopendkim, 
	[  --with-libopendkim=DIR  Find The Trusted Domain Project's libopendkim in DIR],
	[LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    dkim_include=""
	    for dir in include include/dkim include/opendkim ; do
	        test -f $withval/$dir/dkim.h && dkim_include=$dir
	    done
	    CFLAGS=$CFLAGS" -I$withval/$dkim_include"
	    AC_CHECK_LIB([opendkim -lcrypto], dkim_init, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		LIBS=$LIBS" -lopendkim -lcrypto"
		AC_DEFINE([USE_DKIM], [], [we use libopendkim])
		], [echo "libopendkim not found, check config.log for details"
		    echo "Remove --with-opendkim to build without DKIM support"
		    exit 1;])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# Try to configure for libopendkim
SAVEDLDFLAGS=$LDFLAGS
SAVEDCFLAGS=$CFLAGS
AC_ARG_WITH(libopendkim, 
	[  --with-libopendkim=DIR  Find The Trusted Domain Project's libopendkim in DIR],
	[LDFLAGS=$LDFLAGS" -L$withval/lib -Wl,$rpath$withval/lib"
	    dkim_include=""
	    for dir in include include/dkim include/opendkim ; do
	        test -f $withval/$dir/dkim.h && dkim_include=$dir
	    done
	    CFLAGS=$CFLAGS" -I$withval/$dkim_include"
	    AC_CHECK_LIB([opendkim -lcrypto], dkim_init, [
		SAVEDLDFLAGS=$LDFLAGS
		SAVEDCFLAGS=$CFLAGS
		LIBS=$LIBS" -lopendkim -lcrypto"
		AC_DEFINE([USE_DKIM], [], [we use libopendkim])
		], [echo "libopendkim not found, check config.log for details"
		    echo "Remove --with-opendkim to build without DKIM support"
		    exit 1;])
])
LDFLAGS=$SAVEDLDFLAGS
CFLAGS=$SAVEDCFLAGS

# NOTE: Sun CCS make insists on a space "-j 1" instead of "-j1" ok for gmake.
AC_ARG_ENABLE(parallel-make,
	[  --disable-parallel-make   use if your make does not support -j],
	[if test "x${enable_parallel_make}" = "xyes" ; then
		AC_SUBST(MAKE_J1, "-j 1")
	 else
		AC_SUBST(MAKE_J1, "")
	 fi
	],
	[AC_SUBST(MAKE_J1, "-j 1")])

AC_ARG_ENABLE(rpath,
	[  --disable-rpath	do not hardcode runtime library paths],
	[if test x$enableval = xno; then
		LDFLAGS=$NORPSAVEDLDFLAGS
	fi])

# Check for socket functions linking. On Solaris, -lsocket -lnsl is required
AC_CHECK_LIB([socket], [socket], [LIBS="$LIBS -lsocket"], 
	[AC_CHECK_LIB([socket -lnsl], [socket], 
		[LIBS="$LIBS -lsocket -lnsl"], [])
	])

# Check for inet_aton (libmilter uses it). On solaris, -lresolv is required
AC_CHECK_LIB([resolv], [inet_aton], [LIBS="$LIBS -lresolv"], []) 

# Check for inet_pton (libmilter uses it). On solaris, -lnsl is required
AC_CHECK_LIB([nsl], [inet_pton], [LIBS="$LIBS -lnsl"], []) 

# Check if we have res_ninit()
AC_MSG_CHECKING([for res_ninit])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <netinet/in.h>
		#include <arpa/nameser.h>
		#include <resolv.h>
	],[
		struct __res_state res;
		res_ninit(&res);
	])], [AC_DEFINE([HAVE_RES_NINIT], [1],
	    [we have res_ninit]) res_ninit=yes],
	    [res_ninit=no])
AC_MSG_RESULT([$res_ninit])

# Check if we have res_ndestroy()
AC_MSG_CHECKING([for res_ndestroy])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <netinet/in.h>
		#include <arpa/nameser.h>
		#include <resolv.h>
	],[
		struct __res_state res;
		res_ndestroy(&res);
	])], [AC_DEFINE([HAVE_RES_NDESTROY], [1],
	    [we have res_ndestroy]) res_ndestroy=yes],
	    [res_ndestroy=no])
AC_MSG_RESULT([$res_ndestroy])

# Check if we have res_nupdate()
AC_MSG_CHECKING([for res_nupdate])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <netinet/in.h>
		#include <arpa/nameser.h>
		#include <resolv.h>
		#include <res_update.h>
	],[
		struct __res_state res;
		ns_updrec updrec;
		res_nupdate(&res, &updrec, NULL);
	])], [AC_DEFINE([HAVE_RES_NUPDATE], [1], [we have res_nupdate])
	      AC_DEFINE([USE_NSUPDATE], [1], [use nsupdate])
	      res_nupdate=yes],
	     [res_nupdate=no])
AC_MSG_RESULT([$res_nupdate])

# Check for getaddrinfo and getnameinfo
AC_DEFUN([IPv6_CHECK_FUNC], [
AH_TEMPLATE(AS_TR_CPP(HAVE_$1), [Define to 1 if you have the `]$1[' function.])
AC_CHECK_FUNC($1, [dnl
  ac_cv_lib_socket_$1=no
  ac_cv_lib_inet6_$1=no
], [dnl
  AC_CHECK_LIB(socket, $1, [dnl
    LIBS="$LIBS -lsocket"
    ac_cv_lib_inet6_$1=no
  ], [dnl
    AC_MSG_CHECKING([whether your system has IPv6 directory])
    AC_CACHE_VAL(ipv6_cv_dir, [dnl
      for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do
	if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then
	  break
	fi
      done])dnl
    AC_MSG_RESULT($ipv6_cv_dir)
    if test $ipv6_cv_dir = no; then
      ac_cv_lib_inet6_$1=no
    else
      if test x$ipv6_libinet6 = x; then
	ipv6_libinet6=no
	SAVELDFLAGS="$LDFLAGS"
	LDFLAGS="$LDFLAGS -L$ipv6_cv_dir/lib"
      fi
      AC_CHECK_LIB(inet6, $1, [dnl
	if test $ipv6_libinet6 = no; then
	  ipv6_libinet6=yes
	  LIBS="$LIBS -linet6"
	fi],)dnl
      if test $ipv6_libinet6 = no; then
	LDFLAGS="$SAVELDFLAGS"
      fi
    fi])dnl
])dnl
ipv6_cv_$1=no
if test $ac_cv_func_$1 = yes -o $ac_cv_lib_socket_$1 = yes \
     -o $ac_cv_lib_inet6_$1 = yes
then
  ipv6_cv_$1=yes
fi
if test $ipv6_cv_$1 = no; then
  if test $1 = getaddrinfo; then
    for ipv6_cv_pfx in o n; do
      AC_EGREP_HEADER(${ipv6_cv_pfx}$1, netdb.h,
		      [AC_CHECK_FUNC(${ipv6_cv_pfx}$1)])
      if eval test X\$ac_cv_func_${ipv6_cv_pfx}$1 = Xyes; then
        ipv6_cv_$1=yes
        break
      fi
    done
  fi
fi
if test $ipv6_cv_$1 = yes; then
  AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$1))
  ifelse([$2], , :, [$2])
else
  ifelse([$3], , :, [$3])
fi])

IPv6_CHECK_FUNC(getaddrinfo)
IPv6_CHECK_FUNC(getnameinfo)

# Check if <time.h> defines timeradd (and timersub)
AC_MSG_CHECKING([if <time.h> defines timeradd])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#if HAVE_TIME_H
		#include <time.h>
		#endif
		#ifdef HAVE_SYS_TIME_H
		#include <sys/time.h>
		#endif
	],[
		#ifndef timeradd
		error timeradd undefined
		#endif
	])], [timeradd=yes], 
	[AC_DEFINE([HAVE_MISSING_TIMERADD], 
	    [], [<time.h> defines timeradd]) timeradd=no])
AC_MSG_RESULT([$timeradd])

# Check if -D_REENTRANT is needed for localtime_r, gmtime_r, strtok_r
SAVEDCFLAGS=$CFLAGS
CFLAGS=$CFLAGS$efl
AC_MSG_CHECKING([if -D_REENTRANT is needed to use localtime_r and strtok_r])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
               #include <time.h>
               #include <string.h>
               #include <stdio.h>
       ],[[

               (void)localtime_r(NULL, NULL);
	       (void)strtok_r(NULL, NULL, NULL);
       ]])], [dreentrant=no],
               [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
                               #define _REENTRANT
                               #include <time.h>
                               #include <string.h>
                               #include <stdio.h>
                       ],[[
                                (void)localtime_r(NULL, NULL);
	       			(void)strtok_r(NULL, NULL, NULL);
                       ]])],
                       [SAVEDCFLAGS=$SAVEDCFLAGS" -D_REENTRANT";
                        dreentrant=yes], [dreentrant=no])
       ])
AC_MSG_RESULT([$dreentrant])
CFLAGS=$SAVEDCFLAGS

# Check if -D__EXTENSIONS__ is needed for snprintf, getopt, seteuid...
SAVEDCFLAGS=$CFLAGS
CFLAGS=$CFLAGS$efl
AC_MSG_CHECKING([if -D__EXTENSIONS__ is needed to use snprintf])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <stdio.h>
	],[[
		char dst[16 + 1];

		snprintf(dst, 16, "test");
	]])], [dextensions=no],
		[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
				#define __EXTENSIONS__
				#include <stdio.h>
			],[[
				char dst[16 + 1];

				snprintf(dst, 16, "test");
			]])], 
			[SAVEDCFLAGS=$SAVEDCFLAGS" -D__EXTENSIONS__"; 
			 dextensions=yes], [dextensions=no])
	])
AC_MSG_RESULT([$dextensions])
CFLAGS=$SAVEDCFLAGS

# Solaris 256 streams limitation workaround
AC_ARG_ENABLE(stdio-hack,
        [  --enable-stdio-hack   Use workaround for Solaris stdio limitation],
        [CFLAGS=$CFLAGS" -DUSE_FD_POOL"])

# Check for DRAC
AC_ARG_ENABLE(drac,
	[  --enable-drac	Enable DRAC support],
	[if test x$enableval = xyes; then CFLAGS=$CFLAGS" -DUSE_DRAC"; fi])
AC_ARG_ENABLE(p0f, 
	[  --enable-p0f		Enable p0f support, v2],
	[if test x$enableval = xyes; then CFLAGS=$CFLAGS" -DUSE_P0F"; fi])
AC_ARG_ENABLE(p0f3, 
	[  --enable-p0f3	Enable p0f support, v3.00 to v3.05],
	[if test x$enableval = xyes; then 
	 CFLAGS=$CFLAGS" -DUSE_P0F -DHAVE_P0F3"; fi])
AC_ARG_ENABLE(p0f306, 
	[  --enable-p0f306	Enable p0f support, v3.06 and up],
	[if test x$enableval = xyes; then 
	 CFLAGS=$CFLAGS" -DUSE_P0F -DHAVE_P0F3 -DHAVE_P0F306"; fi])
AC_ARG_WITH(p0f-src,
	[  --with-p0f-src=path  p0f sources path ],
	[CFLAGS=$CFLAGS" -I$withval -DP0F_QUERY_FROM_P0F_DIST"])

# Check for SpamAssassin
AC_ARG_ENABLE(spamassassin, 
	[  --enable-spamassassin	Enable SpamAssassin support],
	[if test x$enableval = xyes; then CFLAGS=$CFLAGS" -DUSE_SPAMD"; fi])

# Check for libmilter. For sendmail-8.12.1, -lsm is required too.
# This uses a gross hack on the second AC_CHECK_LIB first argument, but using 
# [-lsm] in the optionnal 5th argument does not seems to help at all.
AC_CHECK_LIB(milter, smfi_register,
    [LIBS="$LIBS -lmilter"],
    [AC_CHECK_LIB([milter -lsm], smfi_register,
        [LIBS="$LIBS -lmilter -lsm"],
        [AC_CHECK_LIB([milter -lsmutil], smfi_register,
            [LIBS="$LIBS -lmilter -lsmutil"],
                [echo "Required libmilter not found. Use --with-libmilter"; 
                exit 1;])
        ])
])

AC_CHECK_MEMBER([struct smfiDesc.xxfi_data],
                [CFLAGS=$CFLAGS" -DHAVE_DATA_CALLBACK"],
                [],
                [#include <libmilter/mfapi.h>])

# Check if -lpthreads is needed after -lmilter
AC_MSG_CHECKING([if -lpthread is needed after -lmilter])
SAVEDLIBS=$LIBS
AC_LINK_IFELSE([AC_LANG_PROGRAM([
		#include <pthread.h>
		#include <libmilter/mfapi.h>
	],[
		pthread_self();
		smfi_main();
	])], [pthend=no], [LIBS=$LIBS" -lpthread"; 
		AC_LINK_IFELSE([AC_LANG_PROGRAM([
			#include <pthread.h>
			#include <libmilter/mfapi.h>
		],[
			pthread_self();
			smfi_main();
		])], [pthend=yes; SAVEDLIBS=$LIBS], [pthend=no])
	])

LIBS=$SAVEDLIBS
AC_MSG_RESULT([$pthend])

# Solaris 8 has no <sys/queue.h> at all - headers checked above
# Some Linux flavors have an outdated <sys/queue.h>
AC_MSG_CHECKING([if <sys/queue.h> is outdated])
oldqueue=no
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <sys/queue.h>
	],[
		#ifndef TAILQ_FIRST
		error Your <sys/queue.h> is outdated
		#endif
		#ifndef SIMPLEQ_REMOVE
		error Your <sys/queue.h> is outdated
		#endif
	])], [oldqueue=no], 
	[AC_DEFINE([HAVE_OLD_QUEUE_H], [], [old <sys/queue.h>]) oldqueue=yes])
AC_MSG_RESULT([$oldqueue])

# Darwin is unable to define two __RCSID in the same file
AC_MSG_CHECKING([if __RCSID can be used twice in the same source])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <sys/cdefs.h>
		#ifdef __RCSID
		__RCSID("Id1");
		__RCSID("Id2");
		#endif
	],[
		/* nothing */
	])], [rcsidtwice=yes], 
	[AC_DEFINE([HAVE_BROKEN_RCSID], [], 
	    [__RCSID cannot be used twice]) rcsidtwice=no])
AC_MSG_RESULT([$rcsidtwice])

# Digital UNIX's native compiler require -pthread when using libpthread
# It also require -D_XOPEN_SOURCE=500 for various reasons I have not 
# been abe to isolate. Let's define both there.
AC_MSG_CHECKING([whether <pthreads.h> wants -pthread])
SAVEDCFLAGS=$CFLAGS
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],[])],
	[pthreadfl=no], 
	[CFLAGS=$CFLAGS" -pthread -D_XOPEN_SOURCE=500";
	 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],[])],
		[pthreadfl=yes; SAVEDCFLAGS=$CFLAGS], [pthreadfl=no])
	])
CFLAGS=$SAVEDCFLAGS
AC_MSG_RESULT([$pthreadfl])

# Linux requires -D_XOPEN_SOURCE=500 to build with libpthread and -Wall
AC_MSG_CHECKING([whether you need -D_XOPEN_SOURCE to use libpthread])
xopen=no
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <pthread.h>
	],[
		pthread_rwlock_t lock;
	])], [xopen=no], [CFLAGS="$CFLAGS -D_XOPEN_SOURCE=500"; xopen=yes])
AC_MSG_RESULT([$xopen])

# Tru64 Unix needs -D_OSF_SOURCE for IPV6 support
SAVEDCFLAGS=$CFLAGS
CFLAGS=$CFLAGS" -D_XOPEN_SOURCE=500 -D_BSD_SOURCE"
AC_MSG_CHECKING([if -D_OSF_SOURCE is needed for IPV6 support])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <sys/socket.h>
		#include <netinet/in.h>
	],[[
		#ifdef AF_INET6
		  struct in6_addr s;
		#endif
	]])], [dosfsource=no],
		[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
				#define _OSF_SOURCE
				#include <sys/socket.h>
				#include <netinet/in.h>
			],[[
				#ifdef AF_INET6
				  struct in6_addr s;
				#endif
			]])], 
			[SAVEDCFLAGS=$SAVEDCFLAGS" -D_OSF_SOURCE"; 
			 dosfsource=yes], [dosfsource=no])
	])
AC_MSG_RESULT([$dosfsource])
CFLAGS=$SAVEDCFLAGS

# Linux does not have a sa_len field in sockaddr
AC_CHECK_MEMBER([struct sockaddr.sa_len],
	[AC_DEFINE([HAVE_SA_LEN], [], [sa_len field in struct sockaddr])],, [
		#include <sys/types.h>
		#include <sys/socket.h>
	])

# Pre-RFC2553 system does not have a sin6_scope_id field in sockaddr_in6
AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
	[AC_DEFINE([HAVE_SIN6_SCOPE_ID], [1],
	    [sin6_scope_id field in struct sockaddr_in6])],, [
		#include <sys/types.h>
		#include <sys/socket.h>
		#include <netinet/in.h>
	])

# Darwin seems to have no definition for socklen_t beyond _BSD_SOCKLEN_T_
AC_MSG_CHECKING([if socklen_t is missing])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
		#include <sys/types.h>
		#include <sys/socket.h>
	],[
		socklen_t slen;
	])], [socklen=no], 
	[AC_DEFINE([HAVE_MISSING_SOCKLEN_T], [], 
	    [missing socklen_t definition]) socklen=yes])
AC_MSG_RESULT([$socklen])

# GNU pth-2.0.0 has a bug with rwlock. 
AC_MSG_CHECKING([for broken rwlock in libpthread])
brokenpth=yes
AC_RUN_IFELSE([AC_LANG_PROGRAM([
		#if STDC_HEADERS
		# include <stdlib.h>
		#else
		# ifdef __cplusplus
		extern "C" void exit (int);
		# else
		void exit (int);
		# endif
		#endif

		#if HAVE_SYS_TIME_H
		# include <sys/time.h>
		#else
		struct timeval {
			long tv_sec;
			long tv_usec;
		};
		#endif

		#if HAVE_SYS_TYPES_H
		# include <sys/types.h>
		#else 
		#endif

		#if HAVE_UNISTD_H
		# include <unistd.h>
		#else
		# ifdef __cplusplus
		extern "C" unsigned int exit (unsigned int);
		extern "C" int 
		    select(int, void *, void *, void *, struct timeval *);
		# else
		unsigned int exit (unsigned int);
		int select(int, void *, void *, void *, struct timeval *);
		# endif
		#endif

		#include <pthread.h>
		pthread_rwlock_t lock;
  
		#ifdef __cplusplus
		extern "C" void testfunc (void *);
		extern "C" void yield(void);
		#else
		void testfunc();
		void yeild(void);
		#endif

		/*
		 * On some Linux flavors, using sleep(3) instead
		 * of select causes an infinite hang.
		 */
		void yield (void)
		{
			struct timeval tv;

			tv.tv_sec = 1;
			tv.tv_usec = 0;
			if (select(0, NULL, NULL, NULL, &tv) != 0)
				exit(EXIT_FAILURE);
			return;
		}

		#ifdef __cplusplus
		void testfunc (void *dontcare)
		#else
		void testfunc (dontcare) void *dontcare;
		#endif
		{
			if (pthread_rwlock_rdlock(&lock) != 0)
				exit(EXIT_FAILURE);
			yield();
			if (pthread_rwlock_unlock(&lock) != 0)
				exit(EXIT_FAILURE);
			return;
		}
	],[
		pthread_t tid;

		if (pthread_rwlock_init(&lock, NULL) != 0)
			exit(EXIT_FAILURE);
		if (pthread_create(&tid, NULL, (void *)testfunc, NULL) != 0)
			exit(EXIT_FAILURE);
		if (pthread_rwlock_rdlock(&lock) != 0)
			exit(EXIT_FAILURE);
		yield();
		if (pthread_rwlock_unlock(&lock) != 0)
			exit(EXIT_FAILURE);
		if (pthread_join(tid, NULL) != 0)
			exit(EXIT_FAILURE);
		return 0;
	])], [brokenpth=no], 
	AC_DEFINE([HAVE_BROKEN_RWLOCK], [], [broken rwlock in libpthread]))
AC_MSG_RESULT([$brokenpth])

# Check is DNS resolver is re-entrant
AC_ARG_WITH(thread-safe-resolver,
	[  --with-thread-safe-resolver   Resolver is thread-safe],
	[rdns=yes],[
		SAVEDCFLAGS=$CFLAGS
		CFLAGS=$CFLAGS$efl
		AC_MSG_CHECKING([if DNS resolver is re-entrant])
		AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
				#define _BSD_SOURCE

				#include <sys/types.h>
				#include <netinet/in.h>
				#include <arpa/inet.h>
				#include <arpa/nameser.h>
				#include <resolv.h>
			],[
				struct __res_state res;

				res_ninit(&res);
			])], [rdns=yes], [rdns=no])
		AC_MSG_RESULT([$rdns])
		CFLAGS=$SAVEDCFLAGS
	])

# Check for DNSRBL
AC_ARG_ENABLE(dnsrbl,
	[  --enable-dnsrbl	Enable DNSRBL support],
	[if test x$rdns = xyes; then
		SAVEDCFLAGS=$CFLAGS" -DUSE_DNSRBL"
		# For Debian
		CFLAGS=
		AC_TRY_LINK([#include <arpa/inet.h>
		             #include <arpa/nameser.h>
			], [ int result = ns_initparse(NULL, 0, NULL); ],
			[],[ AC_CHECK_LIB([resolv], [ns_initparse],
			    [LIBS="$LIBS -lresolv"], [
				if test -r ${libdir}/libresolv.a; then
					LIBS="$LIBS ${libdir}/libresolv.a"
				else
					AC_MSG_WARN([ns_initparse not found])
				fi
			    ])
		])
		CFLAGS=$SAVEDCFLAGS
	 else
		echo "--enable-dnsrbl used but DNS resolver is not thread safe";
		echo "Try installing BIND9 and using --with-libbind, or if you";
		echo "know what you are doing, use --with-thread-safe-resolver";
		exit 1;
	 fi
	])

# Check for MX
AC_ARG_ENABLE(mx,
        [  --enable-mx      Enable MX support],
        [if test x$rdns = xyes; then
                SAVEDCFLAGS=$CFLAGS" -DUSE_MX"
                # For Debian
                CFLAGS=
                AC_TRY_LINK([#include <stdio.h>
                             #include <arpa/nameser.h>
                        ], [ int result = ns_initparse(NULL, 0, NULL); ],
                        [],[ AC_CHECK_LIB([resolv], [ns_initparse],
                            [LIBS="$LIBS -lresolv"], [
                                if test -r ${libdir}/libresolv.a; then
                                        LIBS="$LIBS ${libdir}/libresolv.a"
                                else
                                        AC_MSG_WARN([ns_initparse not found])
                                fi
                            ])
                ])
                CFLAGS=$SAVEDCFLAGS
         else
                echo "--enable-mx defined, but DNS resolver is not thread safe";
                echo "Try installing BIND9 and using --with-libbind, or if you";
                echo "know what you are doing, use --with-thread-safe-resolver";
                exit 1;
         fi
        ])

# We enable some features for Postfix
AC_ARG_ENABLE(postfix,
	[  --enable-postfix	Enable Postfix support],
	[if test x$enableval = xyes; then
		CFLAGS=$CFLAGS" -DUSE_POSTFIX"
	 fi
	])

# Record the build environnement for milter-greylist -r
AC_DEFINE_UNQUOTED([BUILD_ENV], ["`logname`@`uname -n`:`pwd` `date`"], 
    [Build environnement]) 

# Options
AC_ARG_WITH(user,
	[  --with-user=USERNAME   The user that will run milter-greylist ],
	[AC_SUBST(USER, $withval)], [AC_SUBST(USER, root)])

CONFFILE="\${SYSCONFDIR}/mail/greylist.conf"
AC_ARG_WITH(conffile,  
	[  --with-conffile=PATH Location of config file],
	[CONFFILE="$withval"])
AC_SUBST(CONFFILE)
CFLAGS=$CFLAGS" -DCONFFILE=\\\"\${CONFFILE}\\\""

DUMPFILE="\${LOCALSTATEDIR}/milter-greylist/greylist.db"
AC_ARG_WITH(dumpfile,
	[  --with-dumpfile=PATH   Location of dump file],
	[DUMPFILE="$withval"])
AC_SUBST(DUMPFILE)
CFLAGS=$CFLAGS" -DDUMPFILE=\\\"\${DUMPFILE}\\\""

AC_ARG_WITH(delay,  
	[  --with-delay=VALUE     Delay before accepting mail],
	[CFLAGS=$CFLAGS" -DGLDELAY=$withval"])
AC_ARG_WITH(timeout,  
	[  --with-timeout=VALUE   Timeout before we forget about a send],
	[CFLAGS=$CFLAGS" -DTIMEOUT=$withval"])
AC_ARG_WITH(autowhite,  
	[  --with-autowhite=VALUE How long auto-whitelisting lasts],
	[CFLAGS=$CFLAGS" -DAUTOWHITE_DELAY=$withval"])
AC_ARG_WITH([drac-db],
	[  --with-drac-db=PATH   Where is the DRAC database ],
	[CFLAGS=$CFLAGS" -DDRACDB=\\\"$withval\\\""])

AC_CONFIG_FILES([Makefile milter-greylist.spec])
AC_OUTPUT