Bug fix: when adding a list of VPs to and existing list, the operators weren't proces...
[freeradius.git] / configure.ac
1 dnl #############################################################
2 dnl #
3 dnl #  For information about autoconf, see:
4 dnl #
5 dnl #  http://www.gnu.org/software/autoconf/
6 dnl #
7 dnl #  The recommended order is:
8 dnl #
9 dnl #  AC_INIT(file)
10 dnl #  0. checks for compiler, libtool, and command line options
11 dnl #  1. checks for programs
12 dnl #  2. checks for libraries
13 dnl #  3. checks for header files
14 dnl #  4. checks for typedefs
15 dnl #  5. checks for structures and functions
16 dnl #  6. checks for compiler characteristics
17 dnl #  7. checks for library functions
18 dnl #  8. checks for system services
19 dnl #  AC_OUTPUT([file...])
20 dnl #
21 dnl #############################################################
22
23 AC_PREREQ([2.59])
24 export CFLAGS LIBS LDFLAGS CPPFLAGS
25
26 AC_INIT([freeradius],[$]Id[$],[http://bugs.freeradius.org],,[http://www.freeradius.org])
27 AC_CONFIG_SRCDIR([src/main/radiusd.c])
28 AC_CONFIG_HEADER([src/include/autoconf.h])
29 m4_include([m4/ax_cc.m4])
30
31 dnl #############################################################
32 dnl #
33 dnl #  Custom hackery to discover version at configure time
34 dnl #
35 dnl #############################################################
36 RADIUSD_MAJOR_VERSION=`cat VERSION | cut -f1 -d.`
37 RADIUSD_MINOR_VERSION=`cat VERSION | cut -f2 -d.`
38 RADIUSD_INCRM_VERSION=`cat VERSION | cut -f3 -d. | sed 's/[[\.-]].*$//'`
39
40 RADIUSD_VERSION=`echo | awk -v major="$RADIUSD_MAJOR_VERSION" \
41 -v minor="$RADIUSD_MINOR_VERSION" \
42 -v incrm="$RADIUSD_INCRM_VERSION" \
43 '{ printf "%02i%02i%02i", major, minor, incrm }'`
44
45 dnl #
46 dnl #  Still useful for custom builds
47 dnl #
48 RADIUSD_VERSION_STRING=`cat VERSION`
49
50 dnl #
51 dnl #  Add definitions to Make.inc as it's used by various build targets
52 dnl #
53 AC_SUBST([RADIUSD_VERSION_STRING])
54
55 dnl #
56 dnl #  Add definitions to autoconf.h, so that the headers that we install
57 dnl #  contain the version number of the server.
58 dnl #
59 AC_DEFINE_UNQUOTED([RADIUSD_VERSION], [${RADIUSD_VERSION}], [Version integer in format <ma><ma><mi><mi><in><in>])
60 AC_DEFINE_UNQUOTED([RADIUSD_VERSION_STRING], ["${RADIUSD_VERSION_STRING}"], [Raw version string from VERSION file])
61
62 dnl #############################################################
63 dnl #
64 dnl #  Override some of the default autoconf variables such as
65 dnl #  CFLAGS if were building in developer mode
66 dnl #
67 dnl #############################################################
68
69 dnl #
70 dnl #  Enable developer features like debugging symbols.
71 dnl #  These checks must be done before expanding the AC_PROG_CC
72 dnl #  and AC_PROG_CXX macros.
73 dnl #
74 AC_ARG_ENABLE(developer,
75 [  --enable-developer      enables features of interest to developers.],
76 [ case "$enableval" in
77   no)
78     developer=no
79     ;;
80   *)
81     developer=yes
82   esac ]
83 )
84
85 dnl #
86 dnl #  Turn on the developer flag when taken from a git checkout (not a release)
87 dnl #
88 if test -d $srcdir/.git; then
89   if test "x$developer" != "xno"; then
90     AC_MSG_NOTICE([found .git directory, enabling developer build implicitly, disable with --disable-developer])
91     developer="yes"
92   fi
93 fi
94
95 dnl #
96 dnl #  Autoconf sets -O2 and -g by default, but this is a PITA for debugging
97 dnl #  so we remove the defaults if were building in developer mode, and set
98 dnl #  -g3 so nice things like macro values are included. Other arguments are
99 dnl #  added later when we know what compiler were using.
100 dnl #
101 if test "x$developer" = "xyes"; then
102   : ${CFLAGS=-g3}
103 fi
104
105 dnl #############################################################
106 dnl #
107 dnl #  0. Checks for compiler, libtool, and command line options.
108 dnl #
109 dnl #############################################################
110
111 dnl #
112 dnl #  Get system information
113 dnl #
114 AC_CANONICAL_SYSTEM
115
116 dnl #
117 dnl #  Check for GNU cc
118 dnl #
119 AC_PROG_CC
120 AC_PROG_CXX
121
122 dnl #
123 dnl #  check for AIX, to allow us to use some BSD functions
124 dnl #  must be before macros that call the compiler.
125 dnl #
126 AC_AIX
127
128 AC_PROG_GCC_TRADITIONAL
129 AC_PROG_CC_SUNPRO
130 AC_PROG_RANLIB
131
132 dnl #
133 dnl #  Definitive check for whether the compiler is clang
134 dnl #
135 AX_CC_IS_CLANG
136 if test "x$ax_cv_cc_clang" = "xyes"; then
137   AC_SUBST(clang_path, "$CC")
138 else
139   AC_SUBST(clang_path, "")
140 fi
141
142
143 dnl #
144 dnl #  Set Default CFLAGS for GCC compatible compilers
145 dnl #
146 if test "x$GCC" = "xyes"; then
147   CFLAGS="$CFLAGS -Wall -std=c99 -D_GNU_SOURCE"
148 fi
149
150 dnl #
151 dnl #  -Qunused-arguments means the compiler won't complain about unsupported arguments
152 dnl #
153 AX_CC_QUNUSED_ARGUMENTS_FLAG
154 if test "x$ax_cv_cc_qunused_arguments_flag" = "xyes"; then
155   CFLAGS="$CFLAGS -Qunused-arguments"
156   LDFLAGS="$LDFLAGS -Qunused-arguments"
157 fi
158
159 dnl #
160 dnl #  Compile in large (2G+) file support.
161 dnl #
162 AC_SYS_LARGEFILE
163
164 dnl #
165 dnl #  check for system bytesex
166 dnl #  AC_DEFINES WORDS_BIGENDIAN
167 dnl #
168 AC_C_BIGENDIAN(
169   [AC_DEFINE(FR_BIG_ENDIAN, 1, [Define if your processor stores words with the most significant byte first])],
170   [AC_DEFINE(FR_LITTLE_ENDIAN, 1, [Define if your processor stores words with the least significant byte first])]
171 )
172
173 dnl #
174 dnl #  Find GNU Make.
175 dnl #
176 AC_CHECK_PROG(GMAKE, gmake, yes, no)
177 if test $GMAKE = no; then
178   AC_PATH_PROG(MAKE, make, /usr/local/bin/make)
179 else
180   AC_PATH_PROG(MAKE, gmake, /usr/local/gnu/bin/make)
181 fi
182 makever=`$ac_cv_path_MAKE --version 2>&1 | grep "GNU Make"`
183 if test -z "$makever"; then
184   AC_MSG_ERROR([GNU Make is not installed.  Please download and install it from ftp://prep.ai.mit.edu/pub/gnu/make/ before continuing.])
185 fi
186
187 dnl #
188 dnl #  autoconf explicitly sets MAKEFLAGS and MFLAGS to '' even though we
189 dnl #  didn't tell it to, so we have to use FR_MAKEFLAGS.
190 dnl #
191 dnl #  determine the number of cores available and set the number of build
192 dnl #  processes appropriately.
193 dnl #
194 AX_SYSTEM_CORES
195
196 dnl #  Temporarily disabled because test and installation targets do not
197 dnl #  have dependencies set up correctly for multiple build processes.
198 dnl if test "x$ax_cv_system_cores" != "x"; then
199 dnl  : ${FR_MAKEFLAGS=-j$ax_cv_system_cores}
200 dnl fi
201 AC_SUBST(FR_MAKEFLAGS)
202
203 dnl #
204 dnl #  See if we have Git.
205 dnl #
206 AC_CHECK_PROG(GIT, git, yes, no)
207
208 dnl Put this in later, when all distributed modules use autoconf.
209 dnl AC_ARG_WITH(disablemodulefoo,
210 dnl [  --without-rlm_foo         Disables module compilation.  Module list:]
211 dnl esyscmd([find src/modules -type d -name rlm_\* -print |\
212 dnl   sed -e 's%src/modules/.*/% (sub)- %; s%.*/%- %' |\
213 dnl   awk '{print "                            "$0}']))
214
215 AC_ARG_ENABLE(strict-dependencies,
216 [  --enable-strict-dependencies  fail configure on lack of module dependancy.])
217
218 AC_ARG_ENABLE(werror,
219 [  --enable-werror         causes the build to fail if any warnings are generated.],
220 [ case "$enableval" in
221     no)
222       werror=no
223     ;;
224     *)
225       werror=yes
226   esac ]
227 )
228
229 dnl #
230 dnl #  extra argument: --with-docdir
231 dnl #
232 docdir='${datadir}/doc/freeradius'
233 AC_MSG_CHECKING([docdir])
234 AC_ARG_WITH(docdir,
235 [  --with-docdir=DIR       directory for documentation [DATADIR/doc/freeradius] ],
236 [ case "$withval" in
237   no)
238     docdir=no
239     ;;
240   yes)
241     ;;
242   [[\\/$]]* | ?:[[\\/]]* )
243     docdir="$withval"
244     ;;
245   *)
246     AC_MSG_ERROR([expected an absolute directory name for --with-docdir: $withval])
247     ;;
248   esac ]
249 )
250 AC_SUBST(docdir)
251 AC_MSG_RESULT($docdir)
252 if test "x$docdir" = xno; then
253   AC_MSG_WARN([Documentation files will NOT be installed.])
254 fi
255
256 dnl #
257 dnl #  extra argument: --with-logdir
258 dnl #
259 logdir='${localstatedir}/log/radius'
260 AC_MSG_CHECKING(logdir)
261 AC_ARG_WITH(logdir,
262 [  --with-logdir=DIR       directory for logfiles [LOCALSTATEDIR/log/radius] ],
263 [ case "$withval" in
264   no)
265     AC_MSG_ERROR([Need logdir])
266     ;;
267   yes)
268     ;;
269   [[\\/$]]* | ?:[[\\/]]* )
270     logdir="$withval"
271     ;;
272   *)
273     AC_MSG_ERROR([expected an absolute directory name for --with-logdir: $withval])
274     ;;
275   esac ]
276 )
277 AC_SUBST(logdir)
278 AC_MSG_RESULT($logdir)
279
280 dnl #
281 dnl #  extra argument: --with-radacctdir
282 dnl #
283 radacctdir='${logdir}/radacct'
284 AC_MSG_CHECKING(radacctdir)
285 AC_ARG_WITH(radacctdir,
286 [  --with-radacctdir=DIR   directory for detail files [LOGDIR/radacct] ],
287 [ case "$withval" in
288   no)
289     AC_MSG_ERROR([Need radacctdir])
290     ;;
291   yes)
292     ;;
293   [[\\/$]]* | ?:[[\\/]]* )
294     radacctdir="$withval"
295     ;;
296   *)
297     AC_MSG_ERROR([expected an absolute directory name for --with-radacctdir: $withval])
298     ;;
299   esac ]
300 )
301 AC_SUBST(radacctdir)
302 AC_MSG_RESULT($radacctdir)
303
304 dnl #
305 dnl #  extra argument: --with-raddbdir
306 dnl #
307 raddbdir='${sysconfdir}/raddb'
308 AC_MSG_CHECKING(raddbdir)
309 AC_ARG_WITH(raddbdir,
310 [  --with-raddbdir=DIR     directory for config files [SYSCONFDIR/raddb] ],
311 [ case "$withval" in
312   no)
313     AC_MSG_ERROR([Need raddbdir])
314     ;;
315   yes)
316     ;;
317   [[\\/$]]* | ?:[[\\/]]* )
318     raddbdir="$withval"
319     ;;
320   *)
321     AC_MSG_ERROR([expected an absolute directory name for --with-raddbdir: $withval])
322     ;;
323   esac ]
324 )
325 AC_SUBST(raddbdir)
326 AC_MSG_RESULT($raddbdir)
327
328 dnl #
329 dnl #  extra argument: --with-dictdir
330 dnl #
331 dictdir='${datarootdir}/freeradius'
332 AC_MSG_CHECKING(dictdir)
333 AC_ARG_WITH(dictdir,
334 [  --with-dictdir=DIR      directory for dictionary files [DATAROOTDIR/freeradius] ],
335 [ case "$withval" in
336   no)
337     AC_MSG_ERROR([Need dictdir])
338     ;;
339   yes)
340     ;;
341   [[\\/$]]* | ?:[[\\/]]* )
342     dictdir="$withval"
343     ;;
344   *)
345     AC_MSG_ERROR([expected an absolute directory name for --with-dictdir: $withval])
346     ;;
347   esac ]
348 )
349 AC_SUBST(dictdir)
350 AC_MSG_RESULT($dictdir)
351
352 modconfdir='${raddbdir}/mods-config'
353 AC_SUBST(modconfdir)
354
355 dnl #
356 dnl #  extra argument: --with-ascend-binary
357 dnl #
358 WITH_ASCEND_BINARY=yes
359 AC_ARG_WITH(ascend-binary,
360 [  --with-ascend-binary    include support for Ascend binary filter attributes (default=yes)],
361 [ case "$withval" in
362   yes)
363     ;;
364   *)
365     WITH_ASCEND_BINARY=no
366   esac ]
367 )
368 if test "x$WITH_ASCEND_BINARY" = "xyes"; then
369   AC_DEFINE(WITH_ASCEND_BINARY, [1], [include support for Ascend binary filter attributes])
370 fi
371
372 dnl #
373 dnl #  extra argument: --with-threads
374 dnl #
375 WITH_THREADS=yes
376 AC_ARG_WITH(threads,
377 [  --with-threads          use threads, if available.  (default=yes) ],
378 [ case "$withval" in
379   yes)
380     ;;
381   *)
382     WITH_THREADS=no
383   esac ]
384 )
385
386 dnl #
387 dnl #  extra argument: --with-tcp
388 dnl #
389 WITH_TCP=yes
390 AC_ARG_WITH(tcp,
391 [  --with-tcp              compile in TCP support. (default=yes)],
392 [ case "$withval" in
393   yes)
394     ;;
395   *)
396     WITH_TCP=no
397   esac ]
398 )
399 if test "x$WITH_TCP" = "xyes"; then
400   AC_DEFINE(WITH_TCP, [1], [define if you want TCP support (For RADSec et al)])
401 fi
402
403 dnl #
404 dnl #  extra argument: --with-vmps
405 dnl #
406 WITH_VMPS=yes
407 AC_ARG_WITH(vmps,
408 [  --with-vmps             compile in VMPS support. (default=yes)],
409 [ case "$withval" in
410   yes)
411     ;;
412   *)
413     WITH_VMPS=no
414   esac ]
415 )
416 if test "x$WITH_VMPS" = "xyes"; then
417   AC_DEFINE(WITH_VMPS, [1], [define if you want VMPS support])
418 fi
419
420 dnl #
421 dnl #  extra argument: --with-dhcp
422 dnl #
423 WITH_DHCP=yes
424 AC_ARG_WITH(dhcp,
425 [  --with-dhcp             compile in DHCP support. (default=yes)],
426 [ case "$withval" in
427   yes)
428     ;;
429   *)
430     WITH_DHCP=no
431   esac ]
432 )
433 if test "x$WITH_DHCP" = "xyes"; then
434   AC_DEFINE(WITH_DHCP, [1], [define if you want DHCP support])
435 fi
436
437 dnl #
438 dnl #  Allow the user to specify a list of modules to be linked
439 dnl #  statically to the server.
440 dnl #
441 STATIC_MODULES=
442 AC_ARG_WITH(static_modules,
443 [  --with-static-modules=QUOTED-MODULE-LIST],[
444   for i in $withval; do
445     STATIC_MODULES="$STATIC_MODULES -dlpreopen ../modules/rlm_$i/rlm_$i.la"
446   done
447 ])
448
449 USE_SHARED_LIBS=yes
450 AC_ARG_WITH(shared-libs,
451 [AS_HELP_STRING([--with-shared-libs ],
452 [build dynamic libraries and link against them. (default=yes)])],
453 [ case "$withval" in
454   no)
455     USE_SHARED_LIBS=no
456     ;;
457   *)
458   esac
459 ])
460
461 MODULES=
462 AC_ARG_WITH(modules,
463 [  --with-modules=QUOTED-MODULE-LIST],[
464  for i in $withval; do
465    MODULES="$MODULES $i"
466  done
467 ])
468
469 dnl #
470 dnl #  extra argument: --with-experimental-modules
471 dnl #
472 EXPERIMENTAL=
473 AC_ARG_WITH(experimental-modules,
474 [AS_HELP_STRING([--with-experimental-modules],
475 [use experimental and unstable modules. (default=no, unless --enable-developer=yes)])],
476 [ case "$withval" in
477   yes)
478     EXPERIMENTAL=yes
479     ;;
480   no)
481     EXPERIMENTAL=no
482     ;;
483   *)
484   esac ]
485 )
486
487 dnl #
488 dnl #  extra argument: --with-udpfromto
489 dnl #
490 WITH_UDPFROMTO=yes
491 AC_ARG_WITH(udpfromto,
492 [  --with-udpfromto        compile in UDPFROMTO support. (default=yes)],
493 [ case "$withval" in
494   yes)
495     WITH_UDPFROMTO=yes
496     ;;
497   *)
498     WITH_UDPFROMTO=no
499   esac ]
500 )
501
502 if test "x$WITH_UDPFROMTO" = "xyes"; then
503   AC_DEFINE(WITH_UDPFROMTO, [], [define if you want udpfromto])
504 fi
505
506 dnl #
507 dnl #  These next two arguments don't actually do anything.  They're
508 dnl #  place holders so that the top-level configure script can tell
509 dnl #  the user how to configure lower-level modules
510 dnl #
511
512 dnl #
513 dnl #  extra argument: --with-rlm-FOO-lib-dir
514 dnl #
515 AC_ARG_WITH(rlm-FOO-lib-dir,
516 [AS_HELP_STRING([--with-rlm-FOO-lib-dir=DIR],
517 [directory in which to look for library files used by module FOO])],
518 [ case "$withval" in
519   *)
520     ;;
521   esac ]
522 )
523
524 dnl #
525 dnl #  extra argument: --with-rlm-FOO-include-dir
526 dnl #
527 AC_ARG_WITH(rlm-FOO-include-dir,
528 [AS_HELP_STRING([--with-rlm-FOO-include-dir=DIR],
529 [directory in which to look for include files used by module FOO])],
530 [ case "$withval" in
531   *)
532     ;;
533   esac ]
534 )
535
536 dnl #
537 dnl #  extra argument: --with-openssl
538 dnl #
539 WITH_OPENSSL=yes
540 AC_ARG_WITH(openssl,
541 [  --with-openssl          use OpenSSL. (default=yes)],
542 [ case "$withval" in
543   no)
544     WITH_OPENSSL=no
545     ;;
546   *)
547     WITH_OPENSSL=yes
548     ;;
549   esac ]
550 )
551
552 dnl #
553 dnl #  extra argument: --with-openssl-lib-dir=dir
554 dnl #
555 openssl_lib_dir=
556 AC_ARG_WITH(openssl-lib-dir,
557 [AS_HELP_STRING([--with-openssl-lib-dir=DIR],
558 [directory to look for OpenSSL library files])],
559 [ case "$withval" in
560   *) openssl_lib_dir="$withval"
561     ;;
562   esac ]
563 )
564
565 dnl #
566 dnl #  extra argument: --with-openssl-includes=dir
567 dnl #
568 openssl_include_dir=
569 AC_ARG_WITH(openssl-include-dir,
570 [AS_HELP_STRING([--with-openssl-include-dir=DIR],
571 [directory to look for OpenSSL include files])],
572 [ case "$withval" in
573   *) openssl_include_dir="$withval"
574     ;;
575   esac ]
576 )
577
578 dnl #
579 dnl #  extra argument: --disable-openssl-version-check
580 dnl #
581 AC_ARG_ENABLE(openssl-version-check,
582 [AS_HELP_STRING([--disable-openssl-version-check],
583                 [disable vulnerable OpenSSL version check])]
584 )
585 if test "x$enable_openssl_version_check" != "xno"; then
586   AC_DEFINE(ENABLE_OPENSSL_VERSION_CHECK, [1],
587             [Define to 1 to have OpenSSL version check enabled])
588   openssl_version_check_config="\
589         #
590         #  allow_vulnerable_openssl: Allow the server to start with
591         #  versions of OpenSSL known to have critical vulnerabilities.
592         #
593         #  This check is based on the version number reported by libssl
594         #  and may not reflect patches applied to libssl by
595         #  distribution maintainers.
596         #
597         allow_vulnerable_openssl = no"
598 else
599   openssl_version_check_config=
600 fi
601 AC_SUBST([openssl_version_check_config])
602
603
604 dnl #############################################################
605 dnl #
606 dnl #  1. Checks for programs
607 dnl #
608 dnl #############################################################
609
610 CHECKRAD=checkrad
611 AC_PATH_PROG(PERL, perl, /usr/local/bin/perl)
612 if test "x$ac_cv_path_PERL" = "x"; then
613   AC_MSG_WARN([perl not found - Simultaneous-Use and checkrad may not work])
614 fi
615 AC_PATH_PROG(SNMPGET, snmpget)
616 if test "x$ac_cv_path_SNMPGET" = "x"; then
617   AC_MSG_WARN([snmpget not found - Simultaneous-Use and checkrad may not work])
618 fi
619
620 AC_PATH_PROG(SNMPWALK, snmpwalk)
621 if test "x$ac_cv_path_SNMPWALK" = "x"; then
622   AC_MSG_WARN([snmpwalk not found - Simultaneous-Use and checkrad may not work])
623 fi
624
625 AC_PATH_PROG(RUSERS, rusers, /usr/bin/rusers)
626
627 dnl #
628 dnl #  FIXME This is truly gross.
629 dnl #
630 missing_dir=`cd $ac_aux_dir && pwd`
631 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
632 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
633 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
634
635 AC_PATH_PROG(LOCATE,locate)
636 AC_PATH_PROG(DIRNAME,dirname)
637 AC_PATH_PROG(GREP,grep)
638
639 dnl #############################################################
640 dnl #
641 dnl #  2. Checks for libraries
642 dnl #
643 dnl #############################################################
644
645 dnl Check for talloc
646 dnl extra argument: --with-talloc-lib-dir=DIR
647 talloc_lib_dir=
648 AC_ARG_WITH(talloc-lib-dir,
649   [AS_HELP_STRING([--with-talloc-lib-dir=DIR],
650   [directory in which to look for talloc library files])],
651   [case "$withval" in
652     no)
653       AC_MSG_ERROR([Need talloc-lib-dir])
654       ;;
655     yes)
656       ;;
657     *)
658       talloc_lib_dir="$withval"
659       ;;
660   esac])
661
662 dnl extra argument: --with-talloc-include-dir=DIR
663 talloc_include_dir=
664 AC_ARG_WITH(talloc-include-dir,
665   [AS_HELP_STRING([--with-talloc-include-dir=DIR],
666   [directory in which to look for talloc include files])],
667   [case "$withval" in
668     no)
669       AC_MSG_ERROR([Need talloc-include-dir])
670       ;;
671     yes)
672       ;;
673     *)
674       talloc_include_dir="$withval"
675       ;;
676   esac])
677
678 smart_try_dir="$talloc_lib_dir"
679 FR_SMART_CHECK_LIB(talloc, _talloc)
680 if test "x$ac_cv_lib_talloc__talloc" != "xyes"; then
681   AC_MSG_WARN([talloc library not found. Use --with-talloc-lib-dir=<path>.])
682   AC_MSG_ERROR([FreeRADIUS requires libtalloc])
683 fi
684
685 TALLOC_LIBS="${smart_lib}"
686 TALLOC_LDFLAGS="${smart_ldflags}"
687 AC_SUBST(TALLOC_LIBS)
688 AC_SUBST(TALLOC_LDFLAGS)
689 LIBS="$old_LIBS"
690
691 dnl #
692 dnl #  If using pthreads, check for -lpthread (posix) or -lc_r (*BSD)
693 dnl #
694 old_CFLAGS=$CFLAGS
695 if test "x$WITH_THREADS" = "xyes"; then
696   if test $ac_cv_prog_suncc = "yes"; then
697     CFLAGS="$CFLAGS -mt"
698   fi
699
700   AC_CHECK_HEADERS(pthread.h, [],
701     [
702       WITH_THREADS="no"
703       fail=[pthread.h]
704     ])
705
706   dnl #
707   dnl #  pthread stuff is usually in -lpthread
708   dnl #  or in -lc_r, on *BSD
709   dnl #
710   dnl #  On Some systems, we need extra pre-processor flags, to get them to
711   dnl #  to do the threading properly.
712   dnl #
713   if test "x$WITH_THREADS" != "xno"; then
714     AC_CHECK_LIB(pthread, pthread_create,
715       [
716         HAVE_LPTHREAD='yes'
717         CFLAGS="$CFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS"
718         LIBS="-lpthread $LIBS"
719
720         dnl #
721         dnl #  -pthread should add all required CPP definitions and linker
722         dnl #  arguments. But not all compilers support it, or some compilers
723         dnl #  only support it on certain platforms.
724         dnl #
725         AX_CC_PTHREAD_FLAG
726         if test "x$ax_cv_cc_pthread_flag" != 'xyes'; then
727           CFLAGS="$CFLAGS -pthread"
728         fi
729       ]
730     )
731
732     dnl #
733     dnl #  Check for libc_r which used to be the threading library used
734     dnl #  for FreeBSD. Internet says it may be deprecated, but if we
735     dnl #  can't find lpthread it's probably worth checking.
736     dnl #
737     if test "x$HAVE_LPTHREAD" != "xyes"; then
738       AC_CHECK_LIB(c_r, pthread_create,
739         [
740           CFLAGS="$CFLAGS -D_THREAD_SAFE"
741
742           dnl #
743           dnl #  -pthread should add all required CPP definitions and linker
744           dnl #  arguments. But not all compilers support it, or some compilers
745           dnl #  only support it on certain platforms.
746           dnl #
747           AX_CC_PTHREAD_FLAG
748           if test "x$ax_cv_cc_pthread_flag" != 'xyes'; then
749             LIBS="-lc_r $LIBS"
750           else
751             CFLAGS="$CFLAGS -pthread"
752           fi
753         ],
754         [ fail=[-lc_r or -lpthread] ]
755       )
756     fi
757   fi
758
759   if test "x$WITH_THREADS" != "xyes"; then
760     AC_MSG_WARN([silently not building with thread support.])
761     AC_MSG_WARN([FAILURE: thread support requires: $fail.])
762   else
763     AC_DEFINE(WITH_THREADS, [1], [define if you want thread support])
764   fi
765 fi
766
767 dnl #
768 dnl #  If we have NO pthread libraries, remove any knowledge of threads.
769 dnl #
770 if test "x$WITH_THREADS" != "xyes"; then
771   CFLAGS=$old_CFLAGS
772   ac_cv_header_pthread_h="no"
773   WITH_THREADS=no
774 else
775   dnl #
776   dnl #  We need sem_init() and friends, as they're the friendliest
777   dnl #  semaphore functions for threading.
778   dnl #
779   dnl #  HP/UX requires linking with librt, too, to get the sem_* symbols.
780   dnl #  Some systems have them in -lsem
781   dnl #  Solaris has them in -lposix4
782   dnl #  NetBSD has them in -lsemaphore
783   dnl #
784
785   AC_SEARCH_LIBS(sem_init, pthread sem posix4 rt semaphore,
786     [],
787     [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]])]
788   )
789 fi
790
791 dnl #
792 dnl #  Check if we need -lsocket
793 dnl #
794 AC_CHECK_LIB(dl, dlopen)
795
796 dnl #
797 dnl #  Check if we need -lsocket
798 dnl #
799 AC_CHECK_LIB(socket, getsockname)
800
801 dnl #
802 dnl #  Check for -lresolv
803 dnl #  This library may be needed later.
804 dnl #
805 AC_CHECK_LIB(resolv, inet_aton)
806
807 dnl #
808 dnl #  Check if we need -lnsl. Usually if we want to
809 dnl #  link against -lsocket we need to include -lnsl as well.
810 dnl #
811 AC_CHECK_LIB(nsl, inet_ntoa)
812 AC_CHECK_LIB(ws2_32, htonl)
813
814 dnl #
815 dnl #  Check the pcap library for the RADIUS sniffer.
816 dnl #
817 dnl extra argument: --with-pcap-lib-dir=DIR
818 pcap_lib_dir=
819 AC_ARG_WITH(pcap-lib-dir,
820   [AS_HELP_STRING([--with-pcap-lib-dir=DIR],
821   [directory in which to look for pcap library files])],
822   [case "$withval" in
823     no)
824       AC_MSG_ERROR([Need pcap-lib-dir])
825       ;;
826     yes)
827       ;;
828     *)
829       pcap_lib_dir="$withval"
830       ;;
831   esac])
832
833 dnl extra argument: --with-pcap-include-dir=DIR
834 pcap_include_dir=
835 AC_ARG_WITH(pcap-include-dir,
836   [AS_HELP_STRING([--with-pcap-include-dir=DIR],
837   [directory in which to look for pcap include files])],
838   [case "$withval" in
839     no)
840       AC_MSG_ERROR([Need pcap-include-dir])
841       ;;
842     yes)
843       ;;
844     *)
845       pcap_include_dir="$withval"
846       ;;
847   esac])
848
849 smart_try_dir="$pcap_lib_dir"
850 FR_SMART_CHECK_LIB(pcap, pcap_open_live)
851 if test "x$ac_cv_lib_pcap_pcap_open_live" != "xyes"; then
852   AC_MSG_WARN([pcap library not found, silently disabling the RADIUS sniffer, and ARP listener.  Use --with-pcap-lib-dir=<path>.])
853 else
854   AC_DEFINE(HAVE_LIBPCAP, 1,
855     [Define to 1 if you have the `pcap' library (-lpcap).]
856   )
857
858   AC_CHECK_FUNCS(\
859     pcap_fopen_offline \
860     pcap_dump_fopen \
861     pcap_create \
862     pcap_activate
863   )
864
865   PCAP_LIBS="${smart_lib}"
866   PCAP_LDFLAGS="${smart_ldflags}"
867 fi
868 dnl Set by FR_SMART_CHECK_LIB
869 LIBS="${old_LIBS}"
870
871 dnl Check for collectdclient
872 dnl extra argument: --with-collectdclient-lib-dir=DIR
873 collectdclient_lib_dir=
874 AC_ARG_WITH(collectdclient-lib-dir,
875   [AS_HELP_STRING([--with-collectdclient-lib-dir=DIR],
876   [directory in which to look for collectdclient library files])],
877   [case "$withval" in
878     no)
879       AC_MSG_ERROR([Need collectdclient-lib-dir])
880       ;;
881     yes)
882       ;;
883     *)
884       collectdclient_lib_dir="$withval"
885       ;;
886   esac])
887
888 dnl extra argument: --with-collectdclient-include-dir=DIR
889 collectdclient_include_dir=
890 AC_ARG_WITH(collectdclient-include-dir,
891   [AS_HELP_STRING([--with-collectdclient-include-dir=DIR],
892   [directory in which to look for collectdclient include files])],
893   [case "$withval" in
894     no)
895       AC_MSG_ERROR([Need collectdclient-include-dir])
896       ;;
897     yes)
898       ;;
899     *)
900       collectdclient_include_dir="$withval"
901       ;;
902   esac])
903
904 smart_try_dir="$collectdclient_lib_dir"
905 FR_SMART_CHECK_LIB(collectdclient, lcc_connect)
906 if test "x$ac_cv_lib_collectdclient_lcc_connect" != "xyes"; then
907   AC_MSG_WARN([collectdclient library not found. Use --with-collectdclient-lib-dir=<path>.])
908 else
909   COLLECTDC_LIBS="${smart_lib}"
910   COLLECTDC_LDFLAGS="${smart_ldflags}"
911 fi
912 dnl Set by FR_SMART_CHECKLIB
913 LIBS="${old_LIBS}"
914
915 dnl Check for cap
916 dnl extra argument: --with-cap-lib-dir=DIR
917 cap_lib_dir=
918 AC_ARG_WITH(cap-lib-dir,
919   [AS_HELP_STRING([--with-cap-lib-dir=DIR],
920   [directory in which to look for cap library files])],
921   [case "$withval" in
922     no)
923       AC_MSG_ERROR([Need cap-lib-dir])
924       ;;
925     yes)
926       ;;
927     *)
928       cap_lib_dir="$withval"
929       ;;
930   esac])
931
932 dnl extra argument: --with-cap-include-dir=DIR
933 cap_include_dir=
934 AC_ARG_WITH(cap-include-dir,
935   [AS_HELP_STRING([--with-cap-include-dir=DIR],
936   [directory in which to look for cap include files])],
937   [case "$withval" in
938     no)
939       AC_MSG_ERROR([Need cap-include-dir])
940       ;;
941     yes)
942       ;;
943     *)
944       cap_include_dir="$withval"
945       ;;
946   esac])
947
948 smart_try_dir="$cap_lib_dir"
949 FR_SMART_CHECK_LIB(cap, cap_get_proc)
950 if test "x$ac_cv_lib_cap_cap_get_proc" != "xyes"; then
951   AC_MSG_WARN([cap library not found, debugger checks will not be enabled. Use --with-cap-lib-dir=<path>.])
952 else
953   AC_DEFINE(HAVE_LIBCAP, 1,
954     [Define to 1 if you have the `cap' library (-lcap).]
955   )
956   HAVE_LIBCAP=1
957 fi
958
959 VL_LIB_READLINE
960
961 dnl #############################################################
962 dnl #
963 dnl #  3. Checks for header files
964 dnl #
965 dnl #############################################################
966
967 dnl #
968 dnl # Check for talloc header files
969 dnl #
970 smart_try_dir="$talloc_include_dir"
971 FR_SMART_CHECK_INCLUDE([talloc.h])
972 if test "x$ac_cv_header_talloc_h" != "xyes"; then
973   AC_MSG_WARN([talloc headers not found. Use --with-talloc-include-dir=<path>.])
974   AC_MSG_ERROR([FreeRADIUS requires libtalloc])
975 fi
976
977 dnl #
978 dnl #  Interix requires us to set -D_ALL_SOURCE, otherwise
979 dnl #  getopt will be #included, but won't link.  <sigh>
980 dnl #
981 case "$host" in
982   *-interix*)
983     CFLAGS="$CFLAGS -D_ALL_SOURCE"
984     ;;
985   *-darwin*)
986     CFLAGS="$CFLAGS -DDARWIN"
987     LIBS="-framework DirectoryService $LIBS"
988     AC_DEFINE([__APPLE_USE_RFC_3542], 1, [Force OSX >= 10.7 Lion to use RFC2292 IPv6 socket options])
989     ;;
990 esac
991
992 AC_HEADER_DIRENT
993 AC_HEADER_STDC
994 AC_HEADER_TIME
995 AC_HEADER_SYS_WAIT
996
997 AC_CHECK_HEADERS( \
998   dlfcn.h \
999   unistd.h \
1000   crypt.h \
1001   errno.h \
1002   resource.h \
1003   sys/resource.h \
1004   getopt.h \
1005   malloc.h \
1006   utmp.h \
1007   utmpx.h \
1008   signal.h \
1009   sys/select.h \
1010   syslog.h \
1011   inttypes.h \
1012   stdint.h \
1013   stdbool.h \
1014   stdio.h \
1015   netdb.h \
1016   semaphore.h \
1017   arpa/inet.h \
1018   netinet/in.h \
1019   sys/types.h \
1020   sys/socket.h \
1021   winsock.h \
1022   utime.h \
1023   sys/time.h \
1024   sys/wait.h \
1025   sys/security.h \
1026   fcntl.h \
1027   sys/fcntl.h \
1028   sys/prctl.h \
1029   sys/ptrace.h \
1030   sys/un.h \
1031   glob.h \
1032   prot.h \
1033   pwd.h \
1034   grp.h \
1035   stddef.h \
1036   fnmatch.h \
1037   sia.h \
1038   siad.h \
1039   features.h \
1040   limits.h \
1041   sys/event.h
1042 )
1043
1044 dnl #
1045 dnl #  FreeBSD requires sys/socket.h before net/if.h
1046 dnl #
1047 AC_CHECK_HEADERS(net/if.h, [], [],
1048   [
1049     #ifdef HAVE_SYS_SOCKET_H
1050     #  include <sys/socket.h>
1051     #endif
1052   ]
1053 )
1054
1055 dnl #
1056 dnl #  other checks which require headers
1057 dnl #
1058 if test "x$ac_cv_header_sys_security_h" = "xyes" && test "x$ac_cv_header_prot_h" = "xyes"
1059 then
1060   AC_DEFINE(OSFC2, [], [define if you have OSFC2 authentication])
1061 fi
1062
1063 if test "x$ac_cv_header_sia_h" = "xyes" && test "x$ac_cv_header_siad_h" = "xyes"
1064 then
1065   AC_DEFINE(OSFSIA, [], [define if you have OSFSIA authentication])
1066 fi
1067
1068 dnl #
1069 dnl #  Were we told to use OpenSSL, if we were and we find an error, call AC_MSG_FAILURE and exit
1070 dnl #
1071 if test "x$WITH_OPENSSL" = xyes; then
1072   OLD_LIBS="$LIBS"
1073
1074   dnl #
1075   dnl #  Apparently OpenSSL will attempt to build with kerberos if we don't pass this?!
1076   dnl #
1077   CFLAGS="$CFLAGS -DOPENSSL_NO_KRB5"
1078
1079   dnl #
1080   dnl #  Check we can link to libcrypto and libssl
1081   dnl #
1082   smart_try_dir="$openssl_lib_dir"
1083   FR_SMART_CHECK_LIB(crypto, DH_new)
1084   if test "x$ac_cv_lib_crypto_DH_new" = "xyes"; then
1085     AC_DEFINE(HAVE_LIBCRYPTO, 1, [Define to 1 if you have the `crypto' library (-lcrypto).])
1086     OPENSSL_LIBS="$smart_lib"
1087     OPENSSL_LDFLAGS="$smart_ldflags"
1088
1089     FR_SMART_CHECK_LIB(ssl, SSL_new)
1090     if test "x$ac_cv_lib_ssl_SSL_new" != "xyes"; then
1091       AC_MSG_FAILURE([failed linking to libssl. Use --with-openssl-lib-dir=<path>, or --with-openssl=no (builds without OpenSSL)])
1092     else
1093       AC_DEFINE(HAVE_LIBSSL, 1, [Define to 1 if you have the `ssl' library (-lssl).])
1094       OPENSSL_LIBS="$OPENSSL_LIBS $smart_lib"
1095
1096       if test "$OPENSSL_LDFLAGS" != "$smart_ldflags"; then
1097         AC_MSG_FAILURE(["inconsistent LDFLAGS between -lssl '$smart_ldflags' and -lcrypto '$OPENSSL_LDFLAGS'"])
1098       fi
1099     fi
1100   else
1101     AC_MSG_FAILURE([failed linking to libcrypto. Use --with-openssl-lib-dir=<path>, or --with-openssl=no (builds without OpenSSL)])
1102   fi
1103
1104   smart_try_dir="$openssl_include_dir"
1105   FR_SMART_CHECK_INCLUDE(openssl/ssl.h)
1106   if test "x$ac_cv_header_openssl_ssl_h" = "xyes"; then
1107     AC_DEFINE(HAVE_OPENSSL_SSL_H, 1, [Define to 1 if you have the <openssl/ssl.h> header file.])
1108
1109     AC_CHECK_HEADERS( \
1110       openssl/crypto.h \
1111       openssl/err.h \
1112       openssl/evp.h \
1113       openssl/md5.h \
1114       openssl/md4.h \
1115       openssl/sha.h \
1116       openssl/ssl.h \
1117       openssl/ocsp.h \
1118       openssl/engine.h,
1119       [ OPENSSL_CPPFLAGS="$smart_include" ],
1120       [
1121         AC_MSG_FAILURE([failed locating OpenSSL headers. Use --with-openssl-include-dir=<path>, or --with-openssl=no (builds without OpenSSL)])
1122       ]
1123     )
1124
1125     AC_MSG_CHECKING([for OpenSSL version >= 0.9.7])
1126     AC_EGREP_CPP(yes,
1127       [#include <openssl/crypto.h>
1128        #if (OPENSSL_VERSION_NUMBER >= 0x00907000L)
1129        yes
1130        #endif
1131       ],
1132       [
1133         AC_MSG_RESULT(yes)
1134       ],
1135       [
1136         AC_MSG_RESULT(no)
1137         AC_MSG_FAILURE([OpenSSL version too old])
1138       ]
1139     )
1140
1141     dnl #
1142     dnl #  CPPFLAGS are passed to the compiler first, so we use
1143     dnl #  them to ensure things like --sysroot don't override the
1144     dnl #  library location we discovered previously.
1145     dnl #
1146     old_CPPFLAGS="$CPPFLAGS"
1147     CPPFLAGS="$OPENSSL_CPPFLAGS $CPPFLAGS"
1148
1149     dnl #
1150     dnl #  Now check that the header versions match the library
1151     dnl #
1152     AC_MSG_CHECKING([OpenSSL library and header version consistency])
1153     AC_RUN_IFELSE(
1154       [AC_LANG_PROGRAM(
1155         [[
1156           #include <stdio.h>
1157           #include <openssl/opensslv.h>
1158           #include <openssl/crypto.h>
1159         ]],
1160         [[
1161           printf("library: %lx header: %lx... ", (unsigned long) SSLeay(), (unsigned long) OPENSSL_VERSION_NUMBER);
1162           if (SSLeay() == OPENSSL_VERSION_NUMBER) {
1163             return 0;
1164           } else {
1165             return 1;
1166           }
1167         ]]
1168       )],
1169       [
1170         AC_MSG_RESULT(yes)
1171       ],
1172       [
1173         AC_MSG_RESULT(no)
1174         AC_MSG_FAILURE([OpenSSL library version does not match header version])
1175       ]
1176     )
1177     CPPFLAGS="$old_CPPFLAGS"
1178   fi
1179
1180   LIBS="$OLD_LIBS"
1181   AC_SUBST(OPENSSL_LIBS)
1182   AC_SUBST(OPENSSL_LDFLAGS)
1183   AC_SUBST(OPENSSL_CPPFLAGS)
1184   export OPENSSL_LIBS OPENSSL_LDFLAGS OPENSSL_CPPFLAGS
1185 fi
1186
1187 dnl #
1188 dnl #  Check the pcap includes for the RADIUS sniffer.
1189 dnl #
1190 if test "x$PCAP_LIBS" = x; then
1191   AC_MSG_NOTICE([skipping test for pcap.h.])
1192 else
1193   dnl #
1194   dnl # Check for pcap header files
1195   dnl #
1196   smart_try_dir="$pcap_include_dir"
1197   FR_SMART_CHECK_INCLUDE([pcap.h])
1198   if test "x$ac_cv_header_pcap_h" == "xyes"; then
1199     AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
1200     AC_SUBST(PCAP_LIBS)
1201     AC_SUBST(PCAP_LDFLAGS)
1202   else
1203     AC_MSG_WARN([pcap headers not found, silently disabling the RADIUS sniffer, and ARP listener. Use --with-pcap-include-dir=<path>.])
1204   fi
1205 fi
1206
1207 dnl Check for collectd-client
1208 if test "x$COLLECTDC_LIBS" = x; then
1209   AC_MSG_NOTICE([skipping test for collectd/client.h.])
1210 else
1211   dnl #
1212   dnl # Check for collectd-client header files
1213   dnl #
1214   smart_try_dir="$collectdclient_include_dir"
1215   FR_SMART_CHECK_INCLUDE([collectd/client.h])
1216   if test "x$ac_cv_header_collectd_client_h" == "xyes"; then
1217     AC_DEFINE(HAVE_COLLECTDC_H, 1, [Define to 1 if you have the `collectdclient' library (-lcollectdclient).])
1218     AC_SUBST(COLLECTDC_LIBS)
1219     AC_SUBST(COLLECTDC_LDFLAGS)
1220   else
1221     AC_MSG_WARN([collectdclient headers not found. Use --with-collectdclient-include-dir=<path>.])
1222   fi
1223 fi
1224
1225 dnl #
1226 dnl #  Check the CAP includes for debugger checks
1227 dnl #
1228 if test "x$HAVE_LIBCAP" = x; then
1229   AC_MSG_NOTICE([skipping test for cap.h.])
1230 else
1231   dnl #
1232   dnl # Check for CAP header files
1233   dnl #
1234   smart_try_dir="$cap_include_dir"
1235   FR_SMART_CHECK_INCLUDE([sys/capability.h])
1236   if test "x$ac_cv_header_sys_capability_h" == "xyes"; then
1237     AC_DEFINE(HAVE_CAPABILITY_H, 1, [Define to 1 if you have the <sys/capability.h> header file.])
1238   else
1239     AC_MSG_WARN([cap headers not found, will not perform debugger checks. Use --with-cap-include-dir=<path>.])
1240   fi
1241 fi
1242
1243 dnl #############################################################
1244 dnl #
1245 dnl #  4. Checks for typedefs
1246 dnl #
1247 dnl #############################################################
1248
1249 dnl #
1250 dnl #  Ensure that these are defined
1251 dnl #
1252 AC_TYPE_OFF_T
1253 AC_TYPE_PID_T
1254 AC_TYPE_SIZE_T
1255 AC_TYPE_UID_T
1256
1257 dnl #
1258 dnl #  Check for socklen_t
1259 dnl #
1260 FR_CHECK_TYPE_INCLUDE(
1261   [
1262     #ifdef HAVE_SYS_TYPES_H
1263     #  include <sys/types.h>
1264     #endif
1265
1266     #ifdef HAVE_SYS_SOCKET_H
1267     #  include <sys/socket.h>
1268     #endif
1269   ],
1270   socklen_t, int, [socklen_t is generally 'int' on systems which don't use it]
1271 )
1272
1273 dnl #
1274 dnl #  Check for uint8_t
1275 dnl #
1276 FR_CHECK_TYPE_INCLUDE(
1277   [
1278     #ifdef HAVE_INTTYPES_H
1279     #  include <inttypes.h>
1280     #endif
1281
1282     #ifdef HAVE_STDINT_H
1283     #  include <stdint.h>
1284     #endif
1285   ],
1286   uint8_t, unsigned char, [uint8_t should be the canonical 'octet' for network traffic]
1287 )
1288
1289 dnl #
1290 dnl #  Check for uint16_t
1291 dnl #
1292 FR_CHECK_TYPE_INCLUDE(
1293   [
1294     #ifdef HAVE_INTTYPES_H
1295     #  include <inttypes.h>
1296     #endif
1297
1298     #ifdef HAVE_STDINT_H
1299     #  include <stdint.h>
1300     #endif
1301   ],
1302   uint16_t, unsigned short, [uint16_t should be the canonical '2 octets' for network traffic]
1303 )
1304
1305 dnl #
1306 dnl #  Check for uint32_t
1307 dnl #
1308 FR_CHECK_TYPE_INCLUDE(
1309   [
1310     #ifdef HAVE_INTTYPES_H
1311     #  include <inttypes.h>
1312     #endif
1313
1314     #ifdef HAVE_STDINT_H
1315     #  include <stdint.h>
1316     #endif
1317   ],
1318   uint32_t, unsigned int, [uint32_t should be the canonical 'network integer']
1319 )
1320
1321 dnl #
1322 dnl #  Check for uint64_t
1323 dnl #
1324 FR_CHECK_TYPE_INCLUDE(
1325   [
1326     #ifdef HAVE_INTTYPES_H
1327     #  include <inttypes.h>
1328     #endif
1329
1330     #ifdef HAVE_STDINT_H
1331     #  include <stdint.h>
1332     #endif
1333   ],
1334   uint64_t, unsigned long long, [uint64_t is required for larger counters]
1335 )
1336
1337 dnl #
1338 dnl #  Check for __uint128_t (compiler builtin)
1339 dnl #
1340 AC_CHECK_TYPE(__uint128_t, AC_DEFINE(HAVE___UINT128_T, 1, [compiler specific 128 bit unsigned integer]), [], [])
1341
1342 dnl #
1343 dnl #  Check for uint128_t (fictitious future data type)
1344 dnl #
1345 AC_CHECK_TYPE(uint128_t, AC_DEFINE(HAVE_UINT128_T, 1, [128 bit unsigned integer]), [],
1346   [
1347     #ifdef HAVE_INTTYPES_H
1348     #  include <inttypes.h>
1349     #endif
1350
1351     #ifdef HAVE_STDINT_H
1352     #  include <stdint.h>
1353     #endif
1354   ]
1355 )
1356
1357 AC_CHECK_TYPE(struct in6_addr, AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1, [IPv6 address structure]), [],
1358   [
1359     #ifdef HAVE_NETINET_IN_H
1360     #  include <netinet/in.h>
1361     #endif
1362   ]
1363 )
1364
1365 AC_CHECK_TYPE(struct sockaddr_storage, AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1, [Generic socket addresses]), [],
1366   [
1367     #ifdef HAVE_NETINET_IN_H
1368     #  include <netinet/in.h>
1369     #endif
1370
1371     #ifdef HAVE_SYS_SOCKET_H
1372     #  include <sys/socket.h>
1373     #endif
1374 ])
1375
1376 AC_CHECK_TYPE(struct sockaddr_in6, AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1, [IPv6 socket addresses]), [],
1377   [
1378     #ifdef HAVE_NETINET_IN_H
1379     #  include <netinet/in.h>
1380     #endif
1381 ])
1382
1383 AC_CHECK_TYPE(struct addrinfo, AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [Generic DNS lookups]), [],
1384   [
1385     #ifdef HAVE_SYS_TYPES_H
1386     #  include <sys/types.h>
1387     #endif
1388
1389     #ifdef HAVE_SYS_SOCKET_H
1390     #  include <sys/socket.h>
1391     #endif
1392
1393     #ifdef HAVE_NETDB_H
1394     #  include <netdb.h>
1395     #endif
1396   ]
1397 )
1398
1399 dnl #
1400 dnl #  Check for sig_t
1401 dnl #
1402 dnl #  FR_CHECK_TYPE_INCLUDE doesn't work for callbacks as it doesn't produce typedefs
1403 dnl #
1404 AC_MSG_CHECKING([if sig_t is defined])
1405 AC_LINK_IFELSE(
1406   [AC_LANG_PROGRAM(
1407     [[
1408       #ifdef HAVE_SIGNAL_H
1409       #  include <signal.h>
1410       #endif
1411     ]],
1412     [[
1413       sig_t func;
1414       return 0;
1415     ]]
1416   )],
1417   [
1418       AC_MSG_RESULT(yes)
1419       AC_DEFINE(HAVE_SIG_T, 1, [Define if the type sig_t is defined by signal.h])
1420   ],
1421   [
1422       AC_MSG_RESULT(no)
1423   ]
1424 )
1425
1426 dnl #############################################################
1427 dnl #
1428 dnl #  5. Checks for structures and functions
1429 dnl #
1430 dnl #############################################################
1431 AC_CHECK_FUNCS( \
1432   getopt_long \
1433   fcntl \
1434   strsignal \
1435   sigaction \
1436   sigprocmask \
1437   pthread_sigmask \
1438   snprintf \
1439   vsnprintf \
1440   setsid \
1441   strncasecmp \
1442   strcasecmp \
1443   localtime_r \
1444   ctime_r \
1445   gmtime_r \
1446   strsep \
1447   inet_aton \
1448   inet_pton \
1449   inet_ntop \
1450   mallopt \
1451   setlinebuf \
1452   setvbuf \
1453   getusershell \
1454   initgroups \
1455   getaddrinfo \
1456   getnameinfo \
1457   closefrom \
1458   gettimeofday \
1459   getpeereid \
1460   setuid \
1461   setresuid \
1462   getresuid \
1463   strlcat \
1464   strlcpy \
1465   kqueue \
1466   openat \
1467   mkdirat \
1468   unlinkat \
1469   bindat
1470 )
1471
1472 AC_TYPE_SIGNAL
1473
1474 dnl #
1475 dnl #  Check if we have utmpx.h
1476 dnl #  if so, check if struct utmpx has entry ut_xtime
1477 dnl #  if not, set it to define ut_xtime == ut_tv.tv_sec
1478 dnl #
1479 if test "x$ac_cv_header_utmpx_h" = "xyes"; then
1480  FR_CHECK_STRUCT_HAS_MEMBER([#include <utmpx.h>], [struct utmpx], ut_xtime)
1481  if test "x$ac_cv_type_struct_utmpx_has_ut_xtime" = "x"; then
1482    AC_DEFINE(ut_xtime, ut_tv.tv_sec, [define to something if you don't have ut_xtime in struct utmpx])
1483  fi
1484 fi
1485
1486 dnl #
1487 dnl #  struct ip_pktinfo
1488 dnl #
1489 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in_pktinfo], ipi_addr)
1490 if test "x$ac_cv_type_struct_in_pktinfo_has_ipi_addr" = "xyes"; then
1491   AC_DEFINE(HAVE_IP_PKTINFO, [], [define if you have IP_PKTINFO (Linux)])
1492 fi
1493
1494 dnl #
1495 dnl #  struct in6_pktinfo
1496 dnl #
1497 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in6_pktinfo], ipi6_addr)
1498 if test "x$ac_cv_type_struct_in6_pktinfo_has_ipi6_addr" = "xyes"; then
1499   AC_DEFINE(HAVE_IN6_PKTINFO, [], [define if you have IN6_PKTINFO (Linux)])
1500 fi
1501
1502 dnl #
1503 dnl #  Check for htonll and htonlll
1504 dnl #
1505 AC_MSG_CHECKING([if htonll is defined])
1506 AC_LINK_IFELSE(
1507   [AC_LANG_PROGRAM(
1508     [[
1509       #include <sys/types.h>
1510       #include <netinet/in.h>
1511     ]],
1512     [[
1513       return htonll(0);
1514     ]]
1515   )],
1516   [
1517       AC_MSG_RESULT(yes)
1518       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function (or macro) htonll exists.])
1519   ],
1520   [
1521       AC_MSG_RESULT(no)
1522   ]
1523 )
1524
1525 AC_MSG_CHECKING([if htonlll is defined])
1526 AC_LINK_IFELSE(
1527   [AC_LANG_PROGRAM(
1528     [[
1529       #include <sys/types.h>
1530       #include <netinet/in.h>
1531     ]],
1532     [[
1533       return htonlll(0);
1534     ]]
1535   )],
1536   [
1537       AC_MSG_RESULT(yes)
1538       AC_DEFINE(HAVE_HTONLLL, 1, [Define if the function (or macro) htonlll exists.])
1539   ],
1540   [
1541       AC_MSG_RESULT(no)
1542   ]
1543 )
1544
1545 dnl #############################################################
1546 dnl #
1547 dnl #  6. Checks for compiler characteristics
1548 dnl #
1549 dnl #############################################################
1550
1551 dnl #
1552 dnl #  Ensure that these are defined
1553 dnl #
1554 AC_C_CONST
1555
1556 dnl #
1557 dnl #  See if this is OS/2
1558 dnl #
1559 AC_MSG_CHECKING([type of OS])
1560 OS=`uname -s`
1561 AC_MSG_RESULT($OS)
1562 if test "$OS" = "OS/2"; then
1563   LIBPREFIX=
1564 else
1565   LIBPREFIX=lib
1566 fi
1567 AC_SUBST(LIBPREFIX)
1568
1569 if test "x$developer" = "xyes"; then
1570   AC_MSG_NOTICE([Setting additional developer CFLAGS])
1571
1572   dnl #
1573   dnl #  Tell the compiler to parse doxygen documentation and verify it against function and variable declarations
1574   dnl #
1575   AX_CC_WDOCUMENTATION_FLAG
1576   if test "x$ax_cv_cc_wdocumentation_flag" = "xyes"; then
1577     devflags="-Wdocumentation"
1578   fi
1579
1580   dnl #
1581   dnl #  If we have -Weverything, it really means *everything* unlike -Wall
1582   dnl #  It's so verbose we need to turn off warnings which aren't useful.
1583   dnl #
1584   AX_CC_WEVERYTHING_FLAG
1585   if test "x$ax_cv_cc_weverything_flag" = "xyes"; then
1586     devflags="$devflags -W -Weverything -Wformat=2 -Wno-date-time -Wno-padded -Wno-gnu-zero-variadic-macro-arguments -Wno-shorten-64-to-32 -Wno-sign-conversion -Wno-conversion -Wno-switch-enum -Wno-gnu-statement-expression -Wno-extended-offsetof -Wno-cast-align -Wno-documentation-unknown-command -Wno-covered-switch-default -Wno-packed -DWITH_VERIFY_PTR=1"
1587   else
1588     if test "x$GCC" = "xyes"; then
1589       devflags="$devflags -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -W -Wredundant-decls -Wundef -Wformat-y2k -Wno-format-extra-args -Wno-format-zero-length -Wno-cast-align -Wformat-nonliteral -Wformat-security -Wformat=2 -DWITH_VERIFY_PTR=1"
1590       INSTALLSTRIP=""
1591     fi
1592   fi
1593
1594   AC_MSG_NOTICE([Developer CFLAGS are "$devflags"])
1595
1596   CFLAGS="$CFLAGS $devflags"
1597   dnl #
1598   dnl #  Enable experimental modules (we want to know if code changes breaks one of them)
1599   dnl #
1600   if test "x$EXPERIMENTAL" != "xno"; then
1601     AC_MSG_NOTICE([is developer build, enabling experimental modules implicitly, disable with --without-experimental-modules])
1602     EXPERIMENTAL=yes
1603   fi
1604 else
1605   devflags=""
1606   CFLAGS="$CFLAGS -DNDEBUG"
1607   INSTALLSTRIP=""
1608 fi
1609
1610 dnl #
1611 dnl #  May of been set outside of this configure script
1612 dnl #
1613 AC_MSG_CHECKING([if building with -DNDEBUG])
1614 if echo "$CFLAGS" | grep '\-DNDEBUG' > /dev/null; then
1615   AC_MSG_RESULT([yes])
1616   AC_DEFINE([WITH_NDEBUG], [1], [define if the server was built with -DNDEBUG])
1617 else
1618   AC_MSG_RESULT([no])
1619 fi
1620
1621 export EXPERIMENTAL
1622
1623 dnl #
1624 dnl #  append the current git hash onto the version string
1625 dnl #
1626 if test -d $srcdir/.git -a "x$GIT" = "xyes"; then
1627   RADIUSD_VERSION_COMMIT=`git log --pretty=format:'%h' -n 1`
1628   AC_DEFINE_UNQUOTED([RADIUSD_VERSION_COMMIT],[${RADIUSD_VERSION_COMMIT}],[Commit HEAD at time of configuring])
1629 fi
1630
1631 dnl #
1632 dnl #  check for some compiler features
1633 dnl #
1634 FR_TLS
1635 FR_HAVE_BUILTIN_CHOOSE_EXPR
1636 FR_HAVE_BUILTIN_TYPES_COMPATIBLE_P
1637 FR_HAVE_BUILTIN_BSWAP64
1638 FR_HAVE_BOUNDED_ATTRIBUTE
1639
1640 dnl #############################################################
1641 dnl #
1642 dnl #  7. Checks for library functions
1643 dnl #
1644 dnl #############################################################
1645
1646 dnl #
1647 dnl # Check for talloc_set_memlimit
1648 dnl # This was only included in version 2.0.8
1649 dnl #
1650 AC_CHECK_LIB(talloc, talloc_set_memlimit,
1651   [
1652     AC_DEFINE(HAVE_TALLOC_SET_MEMLIMIT, 1, [Define to 1 if you have the function talloc_set_memlimit.])
1653   ]
1654 )
1655
1656 dnl #
1657 dnl # Check for libcrypt
1658 dnl # We use crypt(3) which may be in libc, or in libcrypt (eg FreeBSD)
1659 dnl #
1660 AC_CHECK_LIB(crypt, crypt,
1661   CRYPTLIB="-lcrypt"
1662 )
1663
1664 if test "$CRYPTLIB" != ""; then
1665   AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function])
1666 else
1667   AC_CHECK_FUNC(crypt, AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function]))
1668 fi
1669
1670 dnl Check for libcipher
1671 AC_CHECK_LIB(cipher, setkey,
1672    CRYPTLIB="${CRYPTLIB} -lcipher"
1673 )
1674 AC_SUBST(CRYPTLIB)
1675
1676 dnl #
1677 dnl #  Check for libexecinfo support, on some systems this is built into libc
1678 dnl #  on others it's a separate library.
1679 dnl #
1680 dnl extra argument: --with-execinfo-lib-dir
1681 execinfo_lib_dir=
1682 AC_ARG_WITH(execinfo-lib-dir,
1683 [AS_HELP_STRING([--with-execinfo-lib-dir=DIR],
1684 [directory in which to look for execinfo library files])],
1685 [ case "$withval" in
1686     no)
1687         AC_MSG_ERROR([Need execinfo-lib-dir])
1688         ;;
1689     yes)
1690         ;;
1691     *)
1692         execinfo_lib_dir="$withval"
1693         ;;
1694   esac ]
1695 )
1696
1697 dnl extra argument: --with-execinfo-include-dir
1698 execinfo_include_dir=
1699 AC_ARG_WITH(execinfo-include-dir,
1700 [AS_HELP_STRING([--with-execinfo-include-dir=DIR],
1701 [directory in which to look for execinfo include files])],
1702 [ case "$withval" in
1703     no)
1704         AC_MSG_ERROR([Need execinfo-include-dir])
1705         ;;
1706     yes)
1707         ;;
1708     *)
1709         execinfo_include_dir="$withval"
1710         ;;
1711   esac ]
1712 )
1713
1714 dnl #
1715 dnl #  Look for execinfo.h and symbols
1716 dnl #
1717 smart_try_dir=$execinfo_include_dir
1718 FR_SMART_CHECK_INCLUDE(execinfo.h)
1719 if test "x$ac_cv_header_execinfo_h" = "xyes"; then
1720   smart_try_dir=$execinfo_lib_dir
1721   FR_SMART_CHECK_LIB(execinfo, backtrace_symbols)
1722   if test "x$ac_cv_lib_execinfo_backtrace_symbols" != "xyes"; then
1723     dnl # Might be provided as part of libc
1724     AC_MSG_CHECKING([if execinfo provided as part of libc])
1725     AC_TRY_LINK(
1726       [
1727         #include <execinfo.h>
1728       ],
1729       [
1730         void *sym[1];
1731         backtrace_symbols(&sym, sizeof(sym)) ],
1732       [
1733         AC_MSG_RESULT(yes)
1734         ac_cv_lib_execinfo_backtrace_symbols="yes"
1735       ],
1736       [
1737         AC_MSG_RESULT(no)
1738       ]
1739     )
1740   fi
1741
1742   if test "x$ac_cv_lib_execinfo_backtrace_symbols" = "xyes"; then
1743     AC_DEFINE(HAVE_EXECINFO, [1], [define this if we have <execinfo.h> and symbols])
1744   fi
1745 fi
1746
1747 dnl #
1748 dnl #  Check for regular expression support.
1749 dnl #
1750 dnl extra argument: --with-pcre
1751 PCRE=yes
1752 AC_ARG_WITH(pcre,
1753 [AS_HELP_STRING([--with-pcre],
1754 [use libpcre (if available). (default=yes)])],
1755 [ case "$withval" in
1756     no)
1757     PCRE=no
1758         ;;
1759     yes)
1760     PCRE=yes
1761         ;;
1762   esac ]
1763 )
1764
1765 dnl extra argument: --with-pcre-lib-dir
1766 pcre_lib_dir=
1767 AC_ARG_WITH(pcre-lib-dir,
1768 [AS_HELP_STRING([--with-pcre-lib-dir=DIR],
1769 [directory in which to look for pcre library files])],
1770 [ case "$withval" in
1771     no)
1772         AC_MSG_ERROR(Need pcre-lib-dir)
1773         ;;
1774     yes)
1775         ;;
1776     *)
1777         pcre_lib_dir="$withval"
1778         ;;
1779   esac ]
1780 )
1781
1782 dnl extra argument: --with-pcre-include-dir
1783 pcre_include_dir=
1784 AC_ARG_WITH(pcre-include-dir,
1785 [AS_HELP_STRING([--with-pcre-include-dir=DIR],
1786 [directory in which to look for pcre include files])],
1787 [ case "$withval" in
1788     no)
1789         AC_MSG_ERROR(Need pcre-include-dir)
1790         ;;
1791     yes)
1792         ;;
1793     *)
1794         pcre_include_dir="$withval"
1795         ;;
1796   esac ]
1797 )
1798
1799 dnl extra argument: --with-regex
1800 REGEX=
1801 AC_ARG_WITH(regex,
1802 [AS_HELP_STRING([--with-regex],
1803 [Whether to build with regular expressions (default=yes)])],
1804 [ case "$withval" in
1805     no)
1806         REGEX=no
1807         ;;
1808     *)
1809         ;;
1810   esac ]
1811 )
1812
1813 dnl #
1814 dnl #  First look for PCRE
1815 dnl #
1816 if test "x$REGEX" != "xno" && test "x$PCRE" != "xno"; then
1817   smart_try_dir=$pcre_include_dir
1818   FR_SMART_CHECK_INCLUDE(pcre.h)
1819   if test "x$ac_cv_header_pcre_h" = "xyes"; then
1820     smart_try_dir=$pcre_lib_dir
1821     FR_SMART_CHECK_LIB(pcre, pcre_compile)
1822     if test "x$ac_cv_lib_pcre_pcre_compile" = "xyes"; then
1823       REGEX=yes
1824       AC_DEFINE(HAVE_PCRE, [1], [define this if we have libpcre])
1825       AC_DEFINE(HAVE_BINSAFE_REGEX, 1, [Define if we have a binary safe regular expression library])
1826     fi
1827   fi
1828 fi
1829
1830 dnl #
1831 dnl #  If no PCRE, fallback to POSIX regular expressions
1832 dnl #
1833 if test "x$REGEX" = "x"; then
1834   smart_try_dir=
1835   FR_SMART_CHECK_INCLUDE(regex.h)
1836   if test "x$ac_cv_header_regex_h" = "xyes"; then
1837     REGEX=yes
1838     AC_MSG_CHECKING([for extended regular expressions])
1839     AC_EGREP_CPP(yes,
1840       [
1841         #include <regex.h>
1842         #ifdef REG_EXTENDED
1843         yes
1844         #endif
1845       ],
1846       [
1847         AC_MSG_RESULT(yes)
1848         AC_DEFINE(HAVE_REG_EXTENDED, [1], [define this if we have REG_EXTENDED (from <regex.h>)])
1849       ],
1850       [
1851         AC_MSG_RESULT(no)
1852       ]
1853     )
1854
1855     dnl #
1856     dnl #  Some platforms require the regex library to be linked explicitly
1857     dnl #
1858     AC_CHECK_LIB(regex, regcomp,
1859       [
1860         LIBS="-lregex $LIBS"
1861       ]
1862     )
1863
1864     dnl #
1865     dnl #  Check for some BSD extensions which allow normal regexes to be
1866     dnl #  binary safe.
1867     dnl #
1868     AC_CHECK_FUNCS(\
1869       regncomp \
1870       regnexec
1871     )
1872     if test x"$ac_cv_func_regncomp" = x"yes" && test  x"$ac_cv_func_regnexec" = x"yes"; then
1873       AC_DEFINE(HAVE_BINSAFE_REGEX, 1, [Define if we have a binary safe regular expression library])
1874     fi
1875   fi
1876 fi
1877
1878 if test "x$REGEX" = "xyes"; then
1879   AC_DEFINE(HAVE_REGEX, 1, [Define if we have any regular expression library])
1880 fi
1881
1882 dnl #
1883 dnl #  Check the style of gethostbyaddr, in order of preference
1884 dnl #  GNU (_r eight args)
1885 dnl #
1886 AC_DEFINE(GNUSTYLE, [1], [GNU-Style get*byaddr_r])
1887
1888 dnl #
1889 dnl #  SYSV (_r six args)
1890 dnl #
1891 AC_DEFINE(SYSVSTYLE, [2], [SYSV-Style get*byaddr_r])
1892
1893 dnl #
1894 dnl #  BSD (three args, may not be thread safe)
1895 dnl #
1896 AC_DEFINE(BSDSTYLE, [3], [BSD-Style get*byaddr_r])
1897
1898 dnl #
1899 dnl #  Tru64 has BSD version, but it is thread safe
1900 dnl #  http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1739____.HTM
1901 dnl #  We need #stdio.h to define NULL on FreeBSD (at least)
1902 dnl #
1903 gethostbyaddrrstyle=""
1904 AC_MSG_CHECKING([gethostbyaddr_r() syntax])
1905 case "$host" in
1906   *-freebsd*)
1907     dnl #
1908     dnl #  With FreeBSD, check if there's a prototype for gethostbyaddr_r.
1909     dnl #  Some versions (FreeBSD 5.1?) have a symbol but no prototype - so we
1910     dnl #  override this test to BSDSTYLE. FreeBSD 6.2 and up have proper GNU
1911     dnl #  style support.
1912     dnl #
1913     AC_CHECK_DECLS([gethostbyaddr_r], [],
1914       [
1915         AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE,
1916           [style of gethostbyaddr_r functions ])
1917         gethostbyaddrrstyle=BSD
1918         AC_MSG_WARN([FreeBSD overridden to BSD-style])
1919       ],
1920       [
1921         #ifdef HAVE_NETDB_H
1922         #include <netdb.h>
1923         #endif
1924       ])
1925     ;;
1926 esac
1927
1928 if test "x$gethostbyaddrrstyle" = "x"; then
1929   AC_TRY_LINK(
1930     [
1931       #include <stdio.h>
1932       #include <netdb.h>
1933     ],
1934     [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL, NULL) ],
1935     [
1936       AC_DEFINE(GETHOSTBYADDRRSTYLE, GNUSTYLE, [style of gethostbyaddr_r functions ])
1937       gethostbyaddrrstyle=GNU
1938     ]
1939   )
1940 fi
1941
1942 if test "x$gethostbyaddrrstyle" = "x"; then
1943   AC_TRY_LINK(
1944     [
1945       #include <stdio.h>
1946       #include <netdb.h>
1947     ],
1948     [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL) ] ,
1949     [
1950       AC_DEFINE(GETHOSTBYADDRRSTYLE, SYSVSTYLE, [style of gethostbyaddr_r functions ])
1951       gethostbyaddrrstyle=SYSV
1952     ]
1953   )
1954 fi
1955
1956
1957 if test "x$gethostbyaddrrstyle" = "x"; then
1958   AC_TRY_LINK(
1959     [
1960       #include <stdio.h>
1961       #include <netdb.h>
1962     ],
1963     [ gethostbyaddr(NULL, 0, 0)  ],
1964     [
1965       AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE, [style of gethostbyaddr_r functions ])
1966       gethostbyaddrrstyle=BSD
1967     ]
1968   )
1969 fi
1970
1971 if test "x$gethostbyaddrrstyle" = "x"; then
1972   AC_MSG_RESULT([none!  It must not exist, here.])
1973 else
1974   AC_MSG_RESULT([${gethostbyaddrrstyle}-style])
1975 fi
1976
1977 if test "x$gethostbyaddrrstyle" = "xBSD"; then
1978   AC_MSG_WARN([ ****** BSD-style gethostbyaddr might NOT be thread-safe! ****** ])
1979 fi
1980
1981 dnl #
1982 dnl #  Check the style of gethostbyname, in order of preference
1983 dnl #  GNU (_r seven args)
1984 dnl #  SYSV (_r five args)
1985 dnl #  BSD (two args, may not be thread safe)
1986 dnl #  Tru64 has BSD version, but it _is_ thread safe
1987 dnl #    http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1946____.HTM
1988 dnl #  We need #stdio.h to define NULL on FreeBSD (at least)
1989 dnl #
1990 gethostbynamerstyle=""
1991 AC_MSG_CHECKING([gethostbyname_r() syntax])
1992 AC_TRY_LINK(
1993   [
1994     #include <stdio.h>
1995     #include <netdb.h>
1996   ],
1997   [ gethostbyname_r(NULL, NULL, NULL, 0, NULL, NULL) ],
1998   [
1999     AC_DEFINE(GETHOSTBYNAMERSTYLE, GNUSTYLE, [style of gethostbyname_r functions ])
2000     gethostbynamerstyle=GNU
2001   ]
2002 )
2003
2004 if test "x$gethostbynamerstyle" = "x"; then
2005   AC_TRY_LINK(
2006     [
2007       #include <stdio.h>
2008       #include <netdb.h>
2009     ],
2010     [ gethostbyname_r(NULL, NULL, NULL, 0, NULL) ] ,
2011     [
2012       AC_DEFINE(GETHOSTBYNAMERSTYLE, SYSVSTYLE, [style of gethostbyname_r functions ])
2013       gethostbynamerstyle=SYSV
2014     ]
2015   )
2016 fi
2017
2018 if test "x$gethostbynamerstyle" = "x"; then
2019   AC_TRY_LINK(
2020     [
2021       #include <stdio.h>
2022       #include <netdb.h>
2023     ],
2024     [ gethostbyname(NULL) ],
2025     [
2026       AC_DEFINE(GETHOSTBYNAMERSTYLE, BSDSTYLE, [style of gethostbyname_r functions ])
2027       gethostbynamerstyle=BSD
2028     ]
2029   )
2030 fi
2031
2032 if test "x$gethostbynamerstyle" = "x"; then
2033   AC_MSG_RESULT([none!  It must not exist, here.])
2034 else
2035   AC_MSG_RESULT([${gethostbynamerstyle}-style])
2036 fi
2037
2038 if test "x$gethostbynamerstyle" = "xBSD"; then
2039   AC_MSG_WARN([ ****** BSD-style gethostbyname might NOT be thread-safe! ****** ])
2040 fi
2041
2042 dnl #
2043 dnl #  Check for thread-safe getpwnam_r and getgrnam_r
2044 dnl #
2045 if test "x$ac_cv_header_pwd_h" = "xyes"; then
2046   AC_MSG_CHECKING([getpwnam_r])
2047   AC_TRY_LINK(
2048     [
2049       #include <stdlib.h>
2050       #include <sys/types.h>
2051       #include <pwd.h>
2052     ],
2053     [ getpwnam_r(NULL, NULL, NULL, 0, NULL) ],
2054     [
2055       AC_MSG_RESULT([yes])
2056       AC_DEFINE(HAVE_GETPWNAM_R, 1,
2057                 [Define to 1 if you have the getpwnam_r.]
2058                 )
2059     ],
2060     [
2061         AC_MSG_RESULT(no)
2062     ]
2063   )
2064 fi
2065
2066 if test "x$ac_cv_header_grp_h" = "xyes"; then
2067   AC_MSG_CHECKING([getgrnam_r])
2068   AC_TRY_LINK(
2069     [
2070       #include <stdlib.h>
2071       #include <sys/types.h>
2072       #include <grp.h>
2073     ],
2074     [ getgrnam_r(NULL, NULL, NULL, 0, NULL) ],
2075     [
2076       AC_MSG_RESULT([yes])
2077       AC_DEFINE(HAVE_GETGRNAM_R, 1,
2078                 [Define to 1 if you have the getgrnam_r.]
2079                 )
2080     ],
2081     [
2082         AC_MSG_RESULT(no)
2083     ]
2084   )
2085 fi
2086
2087
2088 dnl #
2089 dnl #  Check for non-posix solaris ctime_r (extra buflen int arg)
2090 dnl #
2091 AC_DEFINE(POSIXSTYLE, [1], [Posix-Style ctime_r])
2092 AC_DEFINE(SOLARISSTYLE, [2], [Solaris-Style ctime_r])
2093 ctimerstyle=""
2094 AC_MSG_CHECKING([ctime_r() syntax])
2095 AC_TRY_LINK(
2096   [
2097     #include <time.h>
2098   ],
2099   [ ctime_r(NULL, NULL, 0) ],
2100   [
2101     AC_DEFINE(CTIMERSTYLE, SOLARISSTYLE, [style of ctime_r function])
2102     ctimerstyle="SOLARIS"
2103   ]
2104 )
2105
2106 if test "x$ctimerstyle" = "x"; then
2107   AC_TRY_LINK(
2108     [
2109       #include <time.h>
2110     ],
2111     [ ctime_r(NULL, NULL) ],
2112     [
2113       AC_DEFINE(CTIMERSTYLE, POSIXSTYLE, [style of ctime_r function])
2114       ctimerstyle="POSIX"
2115     ]
2116   )
2117 fi
2118
2119 if test "x$ctimerstyle" = "x"; then
2120     AC_MSG_RESULT([none!  It must not exist, here.])
2121 else
2122     AC_MSG_RESULT([${ctimerstyle}-style])
2123 fi
2124
2125 AC_SUBST(HOSTINFO, $host)
2126
2127 dnl #############################################################
2128 dnl #
2129 dnl #  8. Checks for system services
2130 dnl #
2131 dnl #############################################################
2132
2133 dnl #
2134 dnl #  Figure out where libtool is located,
2135 dnl #
2136 top_builddir=`pwd`
2137 export top_builddir
2138 AC_MSG_RESULT([top_builddir=$top_builddir])
2139 dnl #  AC_SUBST(top_builddir)
2140
2141 dnl #
2142 dnl #  import libtool stuff
2143 dnl #
2144 dnl #############################################################
2145 dnl #
2146 dnl #  Configure in any module directories.
2147 dnl #
2148 dnl #############################################################
2149
2150 dnl ############################################################
2151 dnl #  Remove any conflicting definitions if autoconf.h
2152 dnl #  is being included by a module.
2153 dnl #############################################################
2154 AH_BOTTOM([#include <freeradius-devel/automask.h>])
2155
2156 dnl ############################################################
2157 dnl #  make modules by list
2158 dnl #############################################################
2159 if test "x$EXPERIMENTAL" = "xyes"; then
2160   for foo in `ls -1 "${srcdir}"/src/modules | grep rlm_`; do
2161     MODULES="$MODULES $foo"
2162   done
2163 else
2164    dnl #
2165    dnl #  make ONLY the stable modules
2166    dnl #
2167    for foo in `cat "${srcdir}"/src/modules/stable`; do
2168       MODULES="$MODULES $foo"
2169    done
2170 fi
2171
2172 dnl ############################################################
2173 dnl #  Add autoconf subdirs, based on the module list we
2174 dnl #  previously created.
2175 dnl #############################################################
2176 mysubdirs=""
2177 for bar in $MODULES; do
2178   if test -f "${srcdir}"/src/modules/$bar/configure; then
2179     mysubdirs="$mysubdirs src/modules/$bar"
2180   fi
2181 done
2182
2183 dnl #
2184 dnl #  Don't change the variable name here.  Autoconf goes bonkers
2185 dnl #  if you do.
2186 dnl #
2187 AC_CONFIG_SUBDIRS($mysubdirs)
2188 AC_SUBST(MODULES)
2189
2190 dnl #############################################################
2191 dnl #
2192 dnl #  Add -Werror last, so it doesn't interfere with autoconf's
2193 dnl #  test programs.
2194 dnl #
2195 dnl #############################################################
2196 if test "x$werror" == "xyes"; then
2197   CFLAGS="-Werror $CFLAGS"
2198 fi
2199
2200 dnl #############################################################
2201 dnl #
2202 dnl #  And finally, output the results.
2203 dnl #
2204 dnl #############################################################
2205 AC_CONFIG_COMMANDS([stamp-h], [echo timestamp > src/include/stamp-h])
2206 AC_CONFIG_COMMANDS([build-radpaths-h], [(cd ./src/include && /bin/sh ./build-radpaths-h)])
2207 AC_CONFIG_COMMANDS([main-chmod], [(cd ./src/main && chmod +x checkrad radlast radtest)])
2208 AC_CONFIG_COMMANDS([scripts-chmod], [(cd ./scripts && chmod +x rc.radiusd cron/radiusd.cron.daily cron/radiusd.cron.monthly cryptpasswd)])
2209
2210 dnl #
2211 dnl #  Substitute whatever libraries we found to be necessary
2212 dnl #
2213 AC_SUBST(LIBS)
2214 AC_SUBST(INSTALLSTRIP)
2215
2216 AC_SUBST(USE_SHARED_LIBS)
2217 USE_STATIC_LIBS="yes"
2218 AC_SUBST(USE_STATIC_LIBS)
2219 AC_SUBST(STATIC_MODULES)
2220
2221 AC_OUTPUT(\
2222   ./Make.inc \
2223   ./src/include/build-radpaths-h \
2224   ./src/main/radsniff.mk \
2225   ./src/main/checkrad \
2226   ./src/main/radlast \
2227   ./src/main/radtest \
2228   ./scripts/rc.radiusd \
2229   ./scripts/cron/radiusd.cron.daily \
2230   ./scripts/cron/radiusd.cron.monthly \
2231   ./scripts/cryptpasswd \
2232   ./raddb/radrelay.conf \
2233   ./raddb/radiusd.conf
2234 )