forked from redBorder/freeradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
1938 lines (1748 loc) · 47 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
dnl #############################################################
dnl #
dnl # For information about autoconf, see:
dnl #
dnl # http://www.gnu.org/software/autoconf/
dnl #
dnl # The recommended order is:
dnl #
dnl # AC_INIT(file)
dnl # 0. checks for compiler, libtool, and command line options
dnl # 1. checks for programs
dnl # 2. checks for libraries
dnl # 3. checks for header files
dnl # 4. checks for typedefs
dnl # 5. checks for structures and functions
dnl # 6. checks for compiler characteristics
dnl # 7. checks for library functions
dnl # 8. checks for system services
dnl # AC_OUTPUT([file...])
dnl #
dnl #############################################################
AC_PREREQ([2.59])
export CFLAGS LIBS LDFLAGS CPPFLAGS
AC_INIT([freeradius],[$]Id[$],[http://bugs.freeradius.org],,[http://www.freeradius.org])
AC_CONFIG_SRCDIR([src/main/radiusd.c])
AC_CONFIG_HEADER([src/include/autoconf.h])
m4_include([m4/ax_cc.m4])
dnl #############################################################
dnl #
dnl # Custom hackery to discover version at configure time
dnl #
dnl #############################################################
RADIUSD_MAJOR_VERSION=`cat VERSION | sed 's/\..*//'`
RADIUSD_MINOR_VERSION=`cat VERSION | sed 's/^[[^\.]]*\.//' | sed 's/\..*$//'`
RADIUSD_INCRM_VERSION=`cat VERSION | sed 's/^.*\..*\.//' | sed 's/[[\.-]].*$//'`
RADIUSD_VERSION=`echo | awk -v major="$RADIUSD_MAJOR_VERSION" \
-v minor="$RADIUSD_MINOR_VERSION" \
-v incrm="$RADIUSD_INCRM_VERSION" \
'{ printf "%02i%02i%02i", major, minor, incrm }'`
dnl #
dnl # Still useful for custom builds
dnl #
RADIUSD_VERSION_STRING=`cat VERSION`
dnl #
dnl # Add definitions to Make.inc as it's used by various build targets
dnl #
AC_SUBST([RADIUSD_VERSION_STRING])
dnl #
dnl # Add definitions to autoconf.h, so that the headers that we install
dnl # contain the version number of the server.
dnl #
AC_DEFINE_UNQUOTED([RADIUSD_VERSION], [${RADIUSD_VERSION}], [Version integer in format <ma><ma><mi><mi><in><in>])
AC_DEFINE_UNQUOTED([RADIUSD_VERSION_STRING], ["${RADIUSD_VERSION_STRING}"], [Raw version string from VERSION file])
dnl #############################################################
dnl #
dnl # Override some of the default autoconf variables such as
dnl # CFLAGS if were building in developer mode
dnl #
dnl #############################################################
dnl #
dnl # Enable developer features like debugging symbols.
dnl # These checks must be done before expanding the AC_PROG_CC
dnl # and AC_PROG_CXX macros.
dnl #
AC_ARG_ENABLE(developer,
[ --enable-developer enables features of interest to developers.],
[ case "$enableval" in
no)
developer=no
;;
*)
developer=yes
esac ]
)
dnl #
dnl # Turn on the developer flag when taken from a git checkout (not a release)
dnl #
if test -d $srcdir/.git; then
if test "x$developer" != "xno"; then
AC_MSG_NOTICE([found .git directory, enabling developer build implicitly, disable with --disable-developer])
developer="yes"
fi
fi
dnl #
dnl # Autoconf sets -O2 and -g by default, but this is a PITA for debugging
dnl # so we remove the defaults if were building in developer mode, and set
dnl # -g3 so nice things like macro values are included. Other arguments are
dnl # added later when we know what compiler were using.
dnl #
if test "x$developer" = "xyes"; then
: ${CFLAGS=-g3}
fi
dnl #############################################################
dnl #
dnl # 0. Checks for compiler, libtool, and command line options.
dnl #
dnl #############################################################
dnl #
dnl # Get system information
dnl #
AC_CANONICAL_SYSTEM
dnl #
dnl # Check for GNU cc
dnl #
AC_PROG_CC
AC_PROG_CXX
dnl #
dnl # check for AIX, to allow us to use some BSD functions
dnl # must be before macros that call the compiler.
dnl #
AC_AIX
AC_PROG_GCC_TRADITIONAL
AC_PROG_CC_SUNPRO
AC_PROG_RANLIB
dnl #
dnl # Definitive check for whether the compiler is clang
dnl #
AX_CC_IS_CLANG
if test "x$ax_cv_cc_clang" = "xyes"; then
AC_SUBST(clang_path, "$CC")
else
AC_SUBST(clang_path, "")
fi
dnl #
dnl # Set Default CFLAGS for GCC compatible compilers
dnl #
if test "x$GCC" = "xyes"; then
CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
fi
dnl #
dnl # -Qunused-arguments means the compiler won't complain about unsupported arguments
dnl #
AX_CC_QUNUSED_ARGUMENTS_FLAG
if test "x$ax_cv_cc_qunused_arguments_flag" = "xyes"; then
CFLAGS="$CFLAGS -Qunused-arguments"
LDFLAGS="$LDFLAGS -Qunused-arguments"
fi
dnl #
dnl # Compile in large (2G+) file support.
dnl #
AC_SYS_LARGEFILE
dnl #
dnl # check for system bytesex
dnl # AC_DEFINES WORDS_BIGENDIAN
dnl #
AC_C_BIGENDIAN(
[AC_DEFINE(BIG_ENDIAN, 1, [Define if your processor stores words with the most significant byte first])],
[AC_DEFINE(LITTLE_ENDIAN, 1, [Define if your processor stores words with the least significant byte first])]
)
dnl #
dnl # Find GNU Make.
dnl #
AC_CHECK_PROG(GMAKE, gmake, yes, no)
if test $GMAKE = no; then
AC_PATH_PROG(MAKE, make, /usr/local/bin/make)
else
AC_PATH_PROG(MAKE, gmake, /usr/local/gnu/bin/make)
fi
makever=`$ac_cv_path_MAKE --version 2>&1 | grep "GNU Make"`
if test -z "$makever"; then
AC_MSG_ERROR([GNU Make is not installed. Please download and install it from ftp://prep.ai.mit.edu/pub/gnu/make/ before continuing.])
fi
dnl #
dnl # autoconf explicitly sets MAKEFLAGS and MFLAGS to '' even though we
dnl # didn't tell it to, so we have to use FR_MAKEFLAGS.
dnl #
dnl # determine the number of cores available and set the number of build
dnl # processes appropriately.
dnl #
AX_SYSTEM_CORES
dnl # Temporarily disabled because test and installation targets do not
dnl # have dependencies set up correctly for multiple build processes.
dnl if test "x$ax_cv_system_cores" != "x"; then
dnl : ${FR_MAKEFLAGS=-j$ax_cv_system_cores}
dnl fi
AC_SUBST(FR_MAKEFLAGS)
dnl #
dnl # See if we have Git.
dnl #
AC_CHECK_PROG(GIT, git, yes, no)
dnl Put this in later, when all distributed modules use autoconf.
dnl AC_ARG_WITH(disablemodulefoo,
dnl [ --without-rlm_foo Disables module compilation. Module list:]
dnl esyscmd([find src/modules -type d -name rlm_\* -print |\
dnl sed -e 's%src/modules/.*/% (sub)- %; s%.*/%- %' |\
dnl awk '{print " "$0}']))
AC_ARG_ENABLE(strict-dependencies,
[ --enable-strict-dependencies fail configure on lack of module dependancy.])
AC_ARG_ENABLE(werror,
[ --enable-werror causes the build to fail if any warnings are generated.],
[ case "$enableval" in
no)
werror=no
;;
*)
werror=yes
esac ]
)
dnl #
dnl # extra argument: --with-docdir
dnl #
docdir='${datadir}/doc/freeradius'
AC_MSG_CHECKING([docdir])
AC_ARG_WITH(docdir,
[ --with-docdir=DIR directory for documentation [DATADIR/doc/freeradius] ],
[ case "$withval" in
no)
docdir=no
;;
yes)
;;
[[\\/$]]* | ?:[[\\/]]* )
docdir="$withval"
;;
*)
AC_MSG_ERROR([expected an absolute directory name for --with-docdir: $withval])
;;
esac ]
)
AC_SUBST(docdir)
AC_MSG_RESULT($docdir)
if test "x$docdir" = xno; then
AC_MSG_WARN([Documentation files will NOT be installed.])
fi
dnl #
dnl # extra argument: --with-logdir
dnl #
logdir='${localstatedir}/log/radius'
AC_MSG_CHECKING(logdir)
AC_ARG_WITH(logdir,
[ --with-logdir=DIR directory for logfiles [LOCALSTATEDIR/log/radius] ],
[ case "$withval" in
no)
AC_MSG_ERROR([Need logdir])
;;
yes)
;;
[[\\/$]]* | ?:[[\\/]]* )
logdir="$withval"
;;
*)
AC_MSG_ERROR([expected an absolute directory name for --with-logdir: $withval])
;;
esac ]
)
AC_SUBST(logdir)
AC_MSG_RESULT($logdir)
dnl #
dnl # extra argument: --with-radacctdir
dnl #
radacctdir='${logdir}/radacct'
AC_MSG_CHECKING(radacctdir)
AC_ARG_WITH(radacctdir,
[ --with-radacctdir=DIR directory for detail files [LOGDIR/radacct] ],
[ case "$withval" in
no)
AC_MSG_ERROR([Need radacctdir])
;;
yes)
;;
[[\\/$]]* | ?:[[\\/]]* )
radacctdir="$withval"
;;
*)
AC_MSG_ERROR([expected an absolute directory name for --with-radacctdir: $withval])
;;
esac ]
)
AC_SUBST(radacctdir)
AC_MSG_RESULT($radacctdir)
dnl #
dnl # extra argument: --with-raddbdir
dnl #
raddbdir='${sysconfdir}/raddb'
AC_MSG_CHECKING(raddbdir)
AC_ARG_WITH(raddbdir,
[ --with-raddbdir=DIR directory for config files [SYSCONFDIR/raddb] ],
[ case "$withval" in
no)
AC_MSG_ERROR([Need raddbdir])
;;
yes)
;;
[[\\/$]]* | ?:[[\\/]]* )
raddbdir="$withval"
;;
*)
AC_MSG_ERROR([expected an absolute directory name for --with-raddbdir: $withval])
;;
esac ]
)
AC_SUBST(raddbdir)
AC_MSG_RESULT($raddbdir)
dnl #
dnl # extra argument: --with-dictdir
dnl #
dictdir='${datarootdir}/freeradius'
AC_MSG_CHECKING(dictdir)
AC_ARG_WITH(dictdir,
[ --with-dictdir=DIR directory for dictionary files [DATAROOTDIR/freeradius] ],
[ case "$withval" in
no)
AC_MSG_ERROR([Need dictdir])
;;
yes)
;;
[[\\/$]]* | ?:[[\\/]]* )
dictdir="$withval"
;;
*)
AC_MSG_ERROR([expected an absolute directory name for --with-dictdir: $withval])
;;
esac ]
)
AC_SUBST(dictdir)
AC_MSG_RESULT($dictdir)
modconfdir='${raddbdir}/mods-config'
AC_SUBST(modconfdir)
dnl #
dnl # extra argument: --with-ascend-binary
dnl #
WITH_ASCEND_BINARY=yes
AC_ARG_WITH(ascend-binary,
[ --with-ascend-binary include support for Ascend binary filter attributes (default=yes)],
[ case "$withval" in
yes)
;;
*)
WITH_ASCEND_BINARY=no
esac ]
)
if test "x$WITH_ASCEND_BINARY" = "xyes"; then
AC_DEFINE(WITH_ASCEND_BINARY, [1], [include support for Ascend binary filter attributes])
fi
dnl #
dnl # extra argument: --with-threads
dnl #
WITH_THREADS=yes
AC_ARG_WITH(threads,
[ --with-threads use threads, if available. (default=yes) ],
[ case "$withval" in
yes)
;;
*)
WITH_THREADS=no
esac ]
)
dnl #
dnl # extra argument: --with-tcp
dnl #
WITH_TCP=yes
AC_ARG_WITH(tcp,
[ --with-tcp compile in TCP support. (default=yes)],
[ case "$withval" in
yes)
;;
*)
WITH_TCP=no
esac ]
)
if test "x$WITH_TCP" = "xyes"; then
AC_DEFINE(WITH_TCP, [1], [define if you want TCP support (For RADSec et al)])
fi
dnl #
dnl # extra argument: --with-vmps
dnl #
WITH_VMPS=yes
AC_ARG_WITH(vmps,
[ --with-vmps compile in VMPS support. (default=yes)],
[ case "$withval" in
yes)
;;
*)
WITH_VMPS=no
esac ]
)
if test "x$WITH_VMPS" = "xyes"; then
AC_DEFINE(WITH_VMPS, [1], [define if you want VMPS support])
fi
dnl #
dnl # extra argument: --with-dhcp
dnl #
WITH_DHCP=yes
AC_ARG_WITH(dhcp,
[ --with-dhcp compile in DHCP support. (default=yes)],
[ case "$withval" in
yes)
;;
*)
WITH_DHCP=no
esac ]
)
if test "x$WITH_DHCP" = "xyes"; then
AC_DEFINE(WITH_DHCP, [1], [define if you want DHCP support])
fi
dnl #
dnl # Allow the user to specify a list of modules to be linked
dnl # statically to the server.
dnl #
STATIC_MODULES=
AC_ARG_WITH(static_modules,
[ --with-static-modules=QUOTED-MODULE-LIST],[
for i in $withval; do
STATIC_MODULES="$STATIC_MODULES -dlpreopen ../modules/rlm_$i/rlm_$i.la"
done
])
USE_SHARED_LIBS=yes
AC_ARG_WITH(shared-libs,
[AS_HELP_STRING([--with-shared-libs ],
[build dynamic libraries and link against them. (default=yes)])],
[ case "$withval" in
no)
USE_SHARED_LIBS=no
;;
*)
esac
])
MODULES=
AC_ARG_WITH(modules,
[ --with-modules=QUOTED-MODULE-LIST],[
for i in $withval; do
MODULES="$MODULES $i"
done
])
dnl #
dnl # extra argument: --with-experimental-modules
dnl #
EXPERIMENTAL=
AC_ARG_WITH(experimental-modules,
[AS_HELP_STRING([--with-experimental-modules],
[use experimental and unstable modules. (default=no, unless --enable-developer=yes)])],
[ case "$withval" in
yes)
EXPERIMENTAL=yes
;;
no)
EXPERIMENTAL=no
;;
*)
esac ]
)
dnl #
dnl # extra argument: --with-udpfromto
dnl #
WITH_UDPFROMTO=yes
AC_ARG_WITH(udpfromto,
[ --with-udpfromto compile in UDPFROMTO support. (default=yes)],
[ case "$withval" in
yes)
WITH_UDPFROMTO=yes
;;
*)
WITH_UDPFROMTO=no
esac ]
)
if test "x$WITH_UDPFROMTO" = "xyes"; then
AC_DEFINE(WITH_UDPFROMTO, [], [define if you want udpfromto])
fi
dnl #
dnl # These next two arguments don't actually do anything. They're
dnl # place holders so that the top-level configure script can tell
dnl # the user how to configure lower-level modules
dnl #
dnl #
dnl # extra argument: --with-rlm-FOO-lib-dir
dnl #
AC_ARG_WITH(rlm-FOO-lib-dir,
[AS_HELP_STRING([--with-rlm-FOO-lib-dir=DIR],
[directory in which to look for library files used by module FOO])],
[ case "$withval" in
*)
;;
esac ]
)
dnl #
dnl # extra argument: --with-rlm-FOO-include-dir
dnl #
AC_ARG_WITH(rlm-FOO-include-dir,
[AS_HELP_STRING([--with-rlm-FOO-include-dir=DIR],
[directory in which to look for include files used by module FOO])],
[ case "$withval" in
*)
;;
esac ]
)
dnl #
dnl # extra argument: --with-openssl
dnl #
WITH_OPENSSL=yes
AC_ARG_WITH(openssl,
[ --with-openssl use OpenSSL. (default=yes)],
[ case "$withval" in
no)
WITH_OPENSSL=no
;;
*)
WITH_OPENSSL=yes
;;
esac ]
)
dnl #
dnl # extra argument: --with-openssl-lib-dir=dir
dnl #
openssl_lib_dir=
AC_ARG_WITH(openssl-lib-dir,
[AS_HELP_STRING([--with-openssl-lib-dir=DIR],
[directory to look for OpenSSL library files])],
[ case "$withval" in
*) openssl_lib_dir="$withval"
;;
esac ]
)
dnl #
dnl # extra argument: --with-openssl-includes=dir
dnl #
openssl_include_dir=
AC_ARG_WITH(openssl-include-dir,
[AS_HELP_STRING([--with-openssl-include-dir=DIR],
[directory to look for OpenSSL include files])],
[ case "$withval" in
*) openssl_include_dir="$withval"
;;
esac ]
)
dnl #############################################################
dnl #
dnl # 1. Checks for programs
dnl #
dnl #############################################################
CHECKRAD=checkrad
AC_PATH_PROG(PERL, perl, /usr/local/bin/perl)
if test "x$ac_cv_path_PERL" = "x"; then
AC_MSG_WARN([perl not found - Simultaneous-Use and checkrad may not work])
fi
AC_PATH_PROG(SNMPGET, snmpget)
if test "x$ac_cv_path_SNMPGET" = "x"; then
AC_MSG_WARN([snmpget not found - Simultaneous-Use and checkrad may not work])
fi
AC_PATH_PROG(SNMPWALK, snmpwalk)
if test "x$ac_cv_path_SNMPWALK" = "x"; then
AC_MSG_WARN([snmpwalk not found - Simultaneous-Use and checkrad may not work])
fi
AC_PATH_PROG(RUSERS, rusers, /usr/bin/rusers)
dnl #
dnl # FIXME This is truly gross.
dnl #
missing_dir=`cd $ac_aux_dir && pwd`
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
AC_PATH_PROG(LOCATE,locate)
AC_PATH_PROG(DIRNAME,dirname)
AC_PATH_PROG(GREP,grep)
dnl #############################################################
dnl #
dnl # 2. Checks for libraries
dnl #
dnl #############################################################
dnl Check for talloc
dnl extra argument: --with-talloc-lib-dir=DIR
talloc_lib_dir=
AC_ARG_WITH(talloc-lib-dir,
[AS_HELP_STRING([--with-talloc-lib-dir=DIR],
[directory in which to look for talloc library files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need talloc-lib-dir])
;;
yes)
;;
*)
talloc_lib_dir="$withval"
;;
esac])
dnl extra argument: --with-talloc-include-dir=DIR
talloc_include_dir=
AC_ARG_WITH(talloc-include-dir,
[AS_HELP_STRING([--with-talloc-include-dir=DIR],
[directory in which to look for talloc include files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need talloc-include-dir])
;;
yes)
;;
*)
talloc_include_dir="$withval"
;;
esac])
smart_try_dir="$talloc_lib_dir"
FR_SMART_CHECK_LIB(talloc, _talloc)
if test "x$ac_cv_lib_talloc__talloc" != "xyes"; then
AC_MSG_WARN([talloc library not found. Use --with-talloc-lib-dir=<path>.])
AC_MSG_ERROR([FreeRADIUS requires libtalloc])
fi
TALLOC_LIBS="${smart_lib}"
TALLOC_LDFLAGS="${smart_ldflags}"
AC_SUBST(TALLOC_LIBS)
AC_SUBST(TALLOC_LDFLAGS)
LIBS="$old_LIBS"
dnl #
dnl # If using pthreads, check for -lpthread (posix) or -lc_r (*BSD)
dnl #
old_CFLAGS=$CFLAGS
if test "x$WITH_THREADS" = "xyes"; then
if test $ac_cv_prog_suncc = "yes"; then
CFLAGS="$CFLAGS -mt"
fi
AC_CHECK_HEADERS(pthread.h, [],
[
WITH_THREADS="no"
fail=[pthread.h]
])
dnl #
dnl # pthread stuff is usually in -lpthread
dnl # or in -lc_r, on *BSD
dnl #
dnl # On Some systems, we need extra pre-processor flags, to get them to
dnl # to do the threading properly.
dnl #
AC_CHECK_LIB(pthread, pthread_create,
[
CFLAGS="$CFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS"
LIBS="-lpthread $LIBS"
],
[
dnl #
dnl # -pthread is not a typo, it's a GCC option which sets additional flags required
dnl # for multithreading with the pthreads library.
dnl #
AC_CHECK_LIB(c_r, pthread_create,
[ CFLAGS="$CFLAGS -pthread -D_THREAD_SAFE" ],
[
WITH_THREADS="no"
fail=[-lpthread]
]
)
]
)
if test "x$WITH_THREADS" != "xyes"; then
AC_MSG_WARN([silently not building with thread support.])
AC_MSG_WARN([FAILURE: thread support requires: $fail.])
else
AC_DEFINE(WITH_THREADS, [1], [define if you want thread support])
fi
fi
dnl #
dnl # If we have NO pthread libraries, remove any knowledge of threads.
dnl #
if test "x$WITH_THREADS" != "xyes"; then
CFLAGS=$old_CFLAGS
ac_cv_header_pthread_h="no"
WITH_THREADS=no
else
dnl #
dnl # We need sem_init() and friends, as they're the friendliest
dnl # semaphore functions for threading.
dnl #
dnl # HP/UX requires linking with librt, too, to get the sem_* symbols.
dnl # Some systems have them in -lsem
dnl # Solaris has them in -lposix4
dnl # NetBSD has them in -lsemaphore
dnl #
AC_SEARCH_LIBS(sem_init, pthread sem posix4 rt semaphore,
[],
[AC_MSG_ERROR([[-lsem not found. You may want to download it from ftp://ftp.to.gd-es.com/pub/BSDI/libsem.tar.bz2 or ftp://ftp.freeradius.org/pub/radius/contrib/libsem.tar.gz]])]
)
fi
dnl #
dnl # Check if we need -lsocket
dnl #
AC_CHECK_LIB(dl, dlopen)
dnl #
dnl # Check if we need -lsocket
dnl #
AC_CHECK_LIB(socket, getsockname)
dnl #
dnl # Check for -lresolv
dnl # This library may be needed later.
dnl #
AC_CHECK_LIB(resolv, inet_aton)
dnl #
dnl # Check if we need -lnsl. Usually if we want to
dnl # link against -lsocket we need to include -lnsl as well.
dnl #
AC_CHECK_LIB(nsl, inet_ntoa)
AC_CHECK_LIB(ws2_32, htonl)
dnl #
dnl # Check the pcap library for the RADIUS sniffer.
dnl #
dnl extra argument: --with-pcap-lib-dir=DIR
pcap_lib_dir=
AC_ARG_WITH(pcap-lib-dir,
[AS_HELP_STRING([--with-pcap-lib-dir=DIR],
[directory in which to look for pcap library files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need pcap-lib-dir])
;;
yes)
;;
*)
pcap_lib_dir="$withval"
;;
esac])
dnl extra argument: --with-pcap-include-dir=DIR
pcap_include_dir=
AC_ARG_WITH(pcap-include-dir,
[AS_HELP_STRING([--with-pcap-include-dir=DIR],
[directory in which to look for pcap include files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need pcap-include-dir])
;;
yes)
;;
*)
pcap_include_dir="$withval"
;;
esac])
smart_try_dir="$pcap_lib_dir"
FR_SMART_CHECK_LIB(pcap, pcap_open_live)
if test "x$ac_cv_lib_pcap_pcap_open_live" != "xyes"; then
AC_MSG_WARN([pcap library not found, silently disabling the RADIUS sniffer, and ARP listener. Use --with-pcap-lib-dir=<path>.])
else
AC_DEFINE(HAVE_LIBPCAP, 1,
[Define to 1 if you have the `pcap' library (-lpcap).]
)
AC_CHECK_FUNCS(\
pcap_fopen_offline \
pcap_dump_fopen \
pcap_create \
pcap_activate
)
PCAP_LIBS="${smart_lib}"
PCAP_LDFLAGS="${smart_ldflags}"
fi
dnl Set by FR_SMART_CHECK_LIB
LIBS="${old_LIBS}"
dnl Check for collectdclient
dnl extra argument: --with-collectdclient-lib-dir=DIR
collectdclient_lib_dir=
AC_ARG_WITH(collectdclient-lib-dir,
[AS_HELP_STRING([--with-collectdclient-lib-dir=DIR],
[directory in which to look for collectdclient library files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need collectdclient-lib-dir])
;;
yes)
;;
*)
collectdclient_lib_dir="$withval"
;;
esac])
dnl extra argument: --with-collectdclient-include-dir=DIR
collectdclient_include_dir=
AC_ARG_WITH(collectdclient-include-dir,
[AS_HELP_STRING([--with-collectdclient-include-dir=DIR],
[directory in which to look for collectdclient include files])],
[case "$withval" in
no)
AC_MSG_ERROR([Need collectdclient-include-dir])
;;
yes)
;;
*)
collectdclient_include_dir="$withval"
;;
esac])
smart_try_dir="$collectdclient_lib_dir"
FR_SMART_CHECK_LIB(collectdclient, lcc_connect)
if test "x$ac_cv_lib_collectdclient_lcc_connect" != "xyes"; then
AC_MSG_WARN([collectdclient library not found. Use --with-collectdclient-lib-dir=<path>.])
else
COLLECTDC_LIBS="${smart_lib}"
COLLECTDC_LDFLAGS="${smart_ldflags}"
fi
dnl Set by FR_SMART_CHECKLIB
LIBS="${old_LIBS}"
VL_LIB_READLINE
dnl #############################################################
dnl #
dnl # 3. Checks for header files
dnl #
dnl #############################################################
dnl #
dnl # Check for talloc header files
dnl #
smart_try_dir="$talloc_include_dir"
FR_SMART_CHECK_INCLUDE([talloc.h])
if test "x$ac_cv_header_talloc_h" != "xyes"; then
AC_MSG_WARN([talloc headers not found. Use --with-talloc-include-dir=<path>.])
AC_MSG_ERROR([FreeRADIUS requires libtalloc])
fi
dnl #
dnl # Interix requires us to set -D_ALL_SOURCE, otherwise
dnl # getopt will be #included, but won't link. <sigh>
dnl #
case "$host" in
*-interix*)
CFLAGS="$CFLAGS -D_ALL_SOURCE"
;;
*-darwin*)
CFLAGS="$CFLAGS -DDARWIN"
LIBS="-framework DirectoryService $LIBS"
;;
esac
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_TIME
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS( \
dlfcn.h \
unistd.h \
crypt.h \
errno.h \
resource.h \
sys/resource.h \
getopt.h \
malloc.h \
utmp.h \
utmpx.h \
signal.h \
sys/select.h \
syslog.h \
inttypes.h \
stdint.h \
stdio.h \
netdb.h \
semaphore.h \
arpa/inet.h \
netinet/in.h \
sys/types.h \
sys/socket.h \
winsock.h \
utime.h \
sys/time.h \
sys/wait.h \
sys/security.h \
fcntl.h \
sys/fcntl.h \
sys/prctl.h \
sys/un.h \
glob.h \
prot.h \
pwd.h \
grp.h \
stddef.h \
fnmatch.h \
sia.h \
siad.h \
features.h
)
dnl #
dnl # FreeBSD requires sys/socket.h before net/if.h
dnl #
AC_CHECK_HEADERS(net/if.h, [], [],
[
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
]
)
dnl #
dnl # other checks which require headers
dnl #
if test "x$ac_cv_header_sys_security_h" = "xyes" && test "x$ac_cv_header_prot_h" = "xyes"
then
AC_DEFINE(OSFC2, [], [define if you have OSFC2 authentication])
fi
if test "x$ac_cv_header_sia_h" = "xyes" && test "x$ac_cv_header_siad_h" = "xyes"
then
AC_DEFINE(OSFSIA, [], [define if you have OSFSIA authentication])
fi
dnl #
dnl # Were we told to use OpenSSL, if we were and we find an error, call AC_MSG_FAILURE and exit
dnl #
if test "x$WITH_OPENSSL" = xyes; then
OLD_LIBS="$LIBS"
dnl #
dnl # Apparently OpenSSL will attempt to build with kerberos if we don't pass this?!
dnl #
CFLAGS="$CFLAGS -DOPENSSL_NO_KRB5"
dnl #
dnl # Check we can link to libcrypto and libssl
dnl #
smart_try_dir="$openssl_lib_dir"
FR_SMART_CHECK_LIB(crypto, DH_new)
if test "x$ac_cv_lib_crypto_DH_new" = "xyes"; then
AC_DEFINE(HAVE_LIBCRYPTO, 1, [Define to 1 if you have the `crypto' library (-lcrypto).])
OPENSSL_LIBS="$smart_lib"
OPENSSL_LDFLAGS="$smart_ldflags"
FR_SMART_CHECK_LIB(ssl, SSL_new)
if test "x$ac_cv_lib_ssl_SSL_new" != "xyes"; then
AC_MSG_FAILURE([failed linking to libssl. Use --with-openssl-lib-dir=<path>, or --with-openssl=no (builds without OpenSSL)])
else
AC_DEFINE(HAVE_LIBSSL, 1, [Define to 1 if you have the `ssl' library (-lssl).])
OPENSSL_LIBS="$OPENSSL_LIBS $smart_lib"
if test "$OPENSSL_LDFLAGS" != "$smart_ldflags"; then
AC_MSG_FAILURE(["inconsistent LDFLAGS between -lssl '$smart_ldflags' and -lcrypto '$OPENSSL_LDFLAGS'"])
fi
fi
else