Correct precedence for determining src ip of DHCP packet
[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 have -ldl
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   dladdr
1471 )
1472
1473 AC_TYPE_SIGNAL
1474
1475 dnl #
1476 dnl #  Check if we have utmpx.h
1477 dnl #  if so, check if struct utmpx has entry ut_xtime
1478 dnl #  if not, set it to define ut_xtime == ut_tv.tv_sec
1479 dnl #
1480 if test "x$ac_cv_header_utmpx_h" = "xyes"; then
1481  FR_CHECK_STRUCT_HAS_MEMBER([#include <utmpx.h>], [struct utmpx], ut_xtime)
1482  if test "x$ac_cv_type_struct_utmpx_has_ut_xtime" = "x"; then
1483    AC_DEFINE(ut_xtime, ut_tv.tv_sec, [define to something if you don't have ut_xtime in struct utmpx])
1484  fi
1485 fi
1486
1487 dnl #
1488 dnl #  struct ip_pktinfo
1489 dnl #
1490 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in_pktinfo], ipi_addr)
1491 if test "x$ac_cv_type_struct_in_pktinfo_has_ipi_addr" = "xyes"; then
1492   AC_DEFINE(HAVE_IP_PKTINFO, [], [define if you have IP_PKTINFO (Linux)])
1493 fi
1494
1495 dnl #
1496 dnl #  struct in6_pktinfo
1497 dnl #
1498 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in6_pktinfo], ipi6_addr)
1499 if test "x$ac_cv_type_struct_in6_pktinfo_has_ipi6_addr" = "xyes"; then
1500   AC_DEFINE(HAVE_IN6_PKTINFO, [], [define if you have IN6_PKTINFO (Linux)])
1501 fi
1502
1503 dnl #
1504 dnl #  Check for htonll and htonlll
1505 dnl #
1506 AC_MSG_CHECKING([if htonll is defined])
1507 AC_LINK_IFELSE(
1508   [AC_LANG_PROGRAM(
1509     [[
1510       #include <sys/types.h>
1511       #include <netinet/in.h>
1512     ]],
1513     [[
1514       return htonll(0);
1515     ]]
1516   )],
1517   [
1518       AC_MSG_RESULT(yes)
1519       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function (or macro) htonll exists.])
1520   ],
1521   [
1522       AC_MSG_RESULT(no)
1523   ]
1524 )
1525
1526 AC_MSG_CHECKING([if htonlll is defined])
1527 AC_LINK_IFELSE(
1528   [AC_LANG_PROGRAM(
1529     [[
1530       #include <sys/types.h>
1531       #include <netinet/in.h>
1532     ]],
1533     [[
1534       return htonlll(0);
1535     ]]
1536   )],
1537   [
1538       AC_MSG_RESULT(yes)
1539       AC_DEFINE(HAVE_HTONLLL, 1, [Define if the function (or macro) htonlll exists.])
1540   ],
1541   [
1542       AC_MSG_RESULT(no)
1543   ]
1544 )
1545
1546 dnl #############################################################
1547 dnl #
1548 dnl #  6. Checks for compiler characteristics
1549 dnl #
1550 dnl #############################################################
1551
1552 dnl #
1553 dnl #  Ensure that these are defined
1554 dnl #
1555 AC_C_CONST
1556
1557 dnl #
1558 dnl #  See if this is OS/2
1559 dnl #
1560 AC_MSG_CHECKING([type of OS])
1561 OS=`uname -s`
1562 AC_MSG_RESULT($OS)
1563 if test "$OS" = "OS/2"; then
1564   LIBPREFIX=
1565 else
1566   LIBPREFIX=lib
1567 fi
1568 AC_SUBST(LIBPREFIX)
1569
1570 if test "x$developer" = "xyes"; then
1571   AC_MSG_NOTICE([Setting additional developer CFLAGS])
1572
1573   dnl #
1574   dnl #  Tell the compiler to parse doxygen documentation and verify it against function and variable declarations
1575   dnl #
1576   AX_CC_WDOCUMENTATION_FLAG
1577   if test "x$ax_cv_cc_wdocumentation_flag" = "xyes"; then
1578     devflags="-Wdocumentation"
1579   fi
1580
1581   dnl #
1582   dnl #  If we have -Weverything, it really means *everything* unlike -Wall
1583   dnl #  It's so verbose we need to turn off warnings which aren't useful.
1584   dnl #
1585   AX_CC_WEVERYTHING_FLAG
1586   if test "x$ax_cv_cc_weverything_flag" = "xyes"; then
1587     devflags="$devflags -W -Weverything -Wformat=2 -Wno-missing-field-initializers -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 -Wno-reserved-id-macro -DWITH_VERIFY_PTR=1"
1588   else
1589     if test "x$GCC" = "xyes"; then
1590       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"
1591       INSTALLSTRIP=""
1592     fi
1593   fi
1594
1595   AC_MSG_NOTICE([Developer CFLAGS are "$devflags"])
1596
1597   CFLAGS="$CFLAGS $devflags"
1598   dnl #
1599   dnl #  Enable experimental modules (we want to know if code changes breaks one of them)
1600   dnl #
1601   if test "x$EXPERIMENTAL" != "xno"; then
1602     AC_MSG_NOTICE([is developer build, enabling experimental modules implicitly, disable with --without-experimental-modules])
1603     EXPERIMENTAL=yes
1604   fi
1605 else
1606   devflags=""
1607   CFLAGS="$CFLAGS -DNDEBUG"
1608   INSTALLSTRIP=""
1609 fi
1610
1611 dnl #
1612 dnl #  May of been set outside of this configure script
1613 dnl #
1614 AC_MSG_CHECKING([if building with -DNDEBUG])
1615 if echo "$CFLAGS" | grep '\-DNDEBUG' > /dev/null; then
1616   AC_MSG_RESULT([yes])
1617   AC_DEFINE([WITH_NDEBUG], [1], [define if the server was built with -DNDEBUG])
1618 else
1619   AC_MSG_RESULT([no])
1620 fi
1621
1622 export EXPERIMENTAL
1623
1624 dnl #
1625 dnl #  append the current git hash onto the version string
1626 dnl #
1627 if test -d $srcdir/.git -a "x$GIT" = "xyes"; then
1628   RADIUSD_VERSION_COMMIT=`git log --pretty=format:'%h' -n 1`
1629   AC_DEFINE_UNQUOTED([RADIUSD_VERSION_COMMIT],[${RADIUSD_VERSION_COMMIT}],[Commit HEAD at time of configuring])
1630 fi
1631
1632 dnl #
1633 dnl #  check for some compiler features
1634 dnl #
1635 FR_TLS
1636 FR_HAVE_BUILTIN_CHOOSE_EXPR
1637 FR_HAVE_BUILTIN_TYPES_COMPATIBLE_P
1638 FR_HAVE_BUILTIN_BSWAP64
1639 FR_HAVE_BOUNDED_ATTRIBUTE
1640
1641 dnl #############################################################
1642 dnl #
1643 dnl #  7. Checks for library functions
1644 dnl #
1645 dnl #############################################################
1646
1647 dnl #
1648 dnl # Check for talloc_set_memlimit
1649 dnl # This was only included in version 2.0.8
1650 dnl #
1651 AC_CHECK_LIB(talloc, talloc_set_memlimit,
1652   [
1653     AC_DEFINE(HAVE_TALLOC_SET_MEMLIMIT, 1, [Define to 1 if you have the function talloc_set_memlimit.])
1654   ]
1655 )
1656
1657 dnl #
1658 dnl # Check for libcrypt
1659 dnl # We use crypt(3) which may be in libc, or in libcrypt (eg FreeBSD)
1660 dnl #
1661 AC_CHECK_LIB(crypt, crypt,
1662   CRYPTLIB="-lcrypt"
1663 )
1664
1665 if test "$CRYPTLIB" != ""; then
1666   AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function])
1667 else
1668   AC_CHECK_FUNC(crypt, AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function]))
1669 fi
1670
1671 dnl Check for libcipher
1672 AC_CHECK_LIB(cipher, setkey,
1673    CRYPTLIB="${CRYPTLIB} -lcipher"
1674 )
1675 AC_SUBST(CRYPTLIB)
1676
1677 dnl #
1678 dnl #  Check for libexecinfo support, on some systems this is built into libc
1679 dnl #  on others it's a separate library.
1680 dnl #
1681 dnl extra argument: --with-execinfo-lib-dir
1682 execinfo_lib_dir=
1683 AC_ARG_WITH(execinfo-lib-dir,
1684 [AS_HELP_STRING([--with-execinfo-lib-dir=DIR],
1685 [directory in which to look for execinfo library files])],
1686 [ case "$withval" in
1687     no)
1688         AC_MSG_ERROR([Need execinfo-lib-dir])
1689         ;;
1690     yes)
1691         ;;
1692     *)
1693         execinfo_lib_dir="$withval"
1694         ;;
1695   esac ]
1696 )
1697
1698 dnl extra argument: --with-execinfo-include-dir
1699 execinfo_include_dir=
1700 AC_ARG_WITH(execinfo-include-dir,
1701 [AS_HELP_STRING([--with-execinfo-include-dir=DIR],
1702 [directory in which to look for execinfo include files])],
1703 [ case "$withval" in
1704     no)
1705         AC_MSG_ERROR([Need execinfo-include-dir])
1706         ;;
1707     yes)
1708         ;;
1709     *)
1710         execinfo_include_dir="$withval"
1711         ;;
1712   esac ]
1713 )
1714
1715 dnl #
1716 dnl #  Look for execinfo.h and symbols
1717 dnl #
1718 smart_try_dir=$execinfo_include_dir
1719 FR_SMART_CHECK_INCLUDE(execinfo.h)
1720 if test "x$ac_cv_header_execinfo_h" = "xyes"; then
1721   smart_try_dir=$execinfo_lib_dir
1722   FR_SMART_CHECK_LIB(execinfo, backtrace_symbols)
1723   if test "x$ac_cv_lib_execinfo_backtrace_symbols" != "xyes"; then
1724     dnl # Might be provided as part of libc
1725     AC_MSG_CHECKING([if execinfo provided as part of libc])
1726     AC_TRY_LINK(
1727       [
1728         #include <execinfo.h>
1729       ],
1730       [
1731         void *sym[1];
1732         backtrace_symbols(&sym, sizeof(sym)) ],
1733       [
1734         AC_MSG_RESULT(yes)
1735         ac_cv_lib_execinfo_backtrace_symbols="yes"
1736       ],
1737       [
1738         AC_MSG_RESULT(no)
1739       ]
1740     )
1741   fi
1742
1743   if test "x$ac_cv_lib_execinfo_backtrace_symbols" = "xyes"; then
1744     AC_DEFINE(HAVE_EXECINFO, [1], [define this if we have <execinfo.h> and symbols])
1745   fi
1746 fi
1747
1748 dnl #
1749 dnl #  Check for regular expression support.
1750 dnl #
1751 dnl extra argument: --with-pcre
1752 PCRE=yes
1753 AC_ARG_WITH(pcre,
1754 [AS_HELP_STRING([--with-pcre],
1755 [use libpcre (if available). (default=yes)])],
1756 [ case "$withval" in
1757     no)
1758     PCRE=no
1759         ;;
1760     yes)
1761     PCRE=yes
1762         ;;
1763   esac ]
1764 )
1765
1766 dnl extra argument: --with-pcre-lib-dir
1767 pcre_lib_dir=
1768 AC_ARG_WITH(pcre-lib-dir,
1769 [AS_HELP_STRING([--with-pcre-lib-dir=DIR],
1770 [directory in which to look for pcre library files])],
1771 [ case "$withval" in
1772     no)
1773         AC_MSG_ERROR(Need pcre-lib-dir)
1774         ;;
1775     yes)
1776         ;;
1777     *)
1778         pcre_lib_dir="$withval"
1779         ;;
1780   esac ]
1781 )
1782
1783 dnl extra argument: --with-pcre-include-dir
1784 pcre_include_dir=
1785 AC_ARG_WITH(pcre-include-dir,
1786 [AS_HELP_STRING([--with-pcre-include-dir=DIR],
1787 [directory in which to look for pcre include files])],
1788 [ case "$withval" in
1789     no)
1790         AC_MSG_ERROR(Need pcre-include-dir)
1791         ;;
1792     yes)
1793         ;;
1794     *)
1795         pcre_include_dir="$withval"
1796         ;;
1797   esac ]
1798 )
1799
1800 dnl extra argument: --with-regex
1801 REGEX=
1802 AC_ARG_WITH(regex,
1803 [AS_HELP_STRING([--with-regex],
1804 [Whether to build with regular expressions (default=yes)])],
1805 [ case "$withval" in
1806     no)
1807         REGEX=no
1808         ;;
1809     *)
1810         ;;
1811   esac ]
1812 )
1813
1814 dnl #
1815 dnl #  First look for PCRE
1816 dnl #
1817 if test "x$REGEX" != "xno" && test "x$PCRE" != "xno"; then
1818   smart_try_dir=$pcre_include_dir
1819   FR_SMART_CHECK_INCLUDE(pcre.h)
1820   if test "x$ac_cv_header_pcre_h" = "xyes"; then
1821     smart_try_dir=$pcre_lib_dir
1822     FR_SMART_CHECK_LIB(pcre, pcre_compile)
1823     if test "x$ac_cv_lib_pcre_pcre_compile" = "xyes"; then
1824       REGEX=yes
1825       AC_DEFINE(HAVE_PCRE, [1], [define this if we have libpcre])
1826       AC_DEFINE(HAVE_BINSAFE_REGEX, 1, [Define if we have a binary safe regular expression library])
1827     fi
1828   fi
1829 fi
1830
1831 dnl #
1832 dnl #  If no PCRE, fallback to POSIX regular expressions
1833 dnl #
1834 if test "x$REGEX" = "x"; then
1835   smart_try_dir=
1836   FR_SMART_CHECK_INCLUDE(regex.h)
1837   if test "x$ac_cv_header_regex_h" = "xyes"; then
1838     REGEX=yes
1839     AC_MSG_CHECKING([for extended regular expressions])
1840     AC_EGREP_CPP(yes,
1841       [
1842         #include <regex.h>
1843         #ifdef REG_EXTENDED
1844         yes
1845         #endif
1846       ],
1847       [
1848         AC_MSG_RESULT(yes)
1849         AC_DEFINE(HAVE_REG_EXTENDED, [1], [define this if we have REG_EXTENDED (from <regex.h>)])
1850       ],
1851       [
1852         AC_MSG_RESULT(no)
1853       ]
1854     )
1855
1856     dnl #
1857     dnl #  Some platforms require the regex library to be linked explicitly
1858     dnl #
1859     AC_CHECK_LIB(regex, regcomp,
1860       [
1861         LIBS="-lregex $LIBS"
1862       ]
1863     )
1864
1865     dnl #
1866     dnl #  Check for some BSD extensions which allow normal regexes to be
1867     dnl #  binary safe.
1868     dnl #
1869     AC_CHECK_FUNCS(\
1870       regncomp \
1871       regnexec
1872     )
1873     if test x"$ac_cv_func_regncomp" = x"yes" && test  x"$ac_cv_func_regnexec" = x"yes"; then
1874       AC_DEFINE(HAVE_BINSAFE_REGEX, 1, [Define if we have a binary safe regular expression library])
1875     fi
1876   fi
1877 fi
1878
1879 if test "x$REGEX" = "xyes"; then
1880   AC_DEFINE(HAVE_REGEX, 1, [Define if we have any regular expression library])
1881 fi
1882
1883 dnl #
1884 dnl #  Check the style of gethostbyaddr, in order of preference
1885 dnl #  GNU (_r eight args)
1886 dnl #
1887 AC_DEFINE(GNUSTYLE, [1], [GNU-Style get*byaddr_r])
1888
1889 dnl #
1890 dnl #  SYSV (_r six args)
1891 dnl #
1892 AC_DEFINE(SYSVSTYLE, [2], [SYSV-Style get*byaddr_r])
1893
1894 dnl #
1895 dnl #  BSD (three args, may not be thread safe)
1896 dnl #
1897 AC_DEFINE(BSDSTYLE, [3], [BSD-Style get*byaddr_r])
1898
1899 dnl #
1900 dnl #  Tru64 has BSD version, but it is thread safe
1901 dnl #  http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1739____.HTM
1902 dnl #  We need #stdio.h to define NULL on FreeBSD (at least)
1903 dnl #
1904 gethostbyaddrrstyle=""
1905 AC_MSG_CHECKING([gethostbyaddr_r() syntax])
1906 case "$host" in
1907   *-freebsd*)
1908     dnl #
1909     dnl #  With FreeBSD, check if there's a prototype for gethostbyaddr_r.
1910     dnl #  Some versions (FreeBSD 5.1?) have a symbol but no prototype - so we
1911     dnl #  override this test to BSDSTYLE. FreeBSD 6.2 and up have proper GNU
1912     dnl #  style support.
1913     dnl #
1914     AC_CHECK_DECLS([gethostbyaddr_r], [],
1915       [
1916         AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE,
1917           [style of gethostbyaddr_r functions ])
1918         gethostbyaddrrstyle=BSD
1919         AC_MSG_WARN([FreeBSD overridden to BSD-style])
1920       ],
1921       [
1922         #ifdef HAVE_NETDB_H
1923         #include <netdb.h>
1924         #endif
1925       ])
1926     ;;
1927 esac
1928
1929 if test "x$gethostbyaddrrstyle" = "x"; then
1930   AC_TRY_LINK(
1931     [
1932       #include <stdio.h>
1933       #include <netdb.h>
1934     ],
1935     [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL, NULL) ],
1936     [
1937       AC_DEFINE(GETHOSTBYADDRRSTYLE, GNUSTYLE, [style of gethostbyaddr_r functions ])
1938       gethostbyaddrrstyle=GNU
1939     ]
1940   )
1941 fi
1942
1943 if test "x$gethostbyaddrrstyle" = "x"; then
1944   AC_TRY_LINK(
1945     [
1946       #include <stdio.h>
1947       #include <netdb.h>
1948     ],
1949     [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL) ] ,
1950     [
1951       AC_DEFINE(GETHOSTBYADDRRSTYLE, SYSVSTYLE, [style of gethostbyaddr_r functions ])
1952       gethostbyaddrrstyle=SYSV
1953     ]
1954   )
1955 fi
1956
1957
1958 if test "x$gethostbyaddrrstyle" = "x"; then
1959   AC_TRY_LINK(
1960     [
1961       #include <stdio.h>
1962       #include <netdb.h>
1963     ],
1964     [ gethostbyaddr(NULL, 0, 0)  ],
1965     [
1966       AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE, [style of gethostbyaddr_r functions ])
1967       gethostbyaddrrstyle=BSD
1968     ]
1969   )
1970 fi
1971
1972 if test "x$gethostbyaddrrstyle" = "x"; then
1973   AC_MSG_RESULT([none!  It must not exist, here.])
1974 else
1975   AC_MSG_RESULT([${gethostbyaddrrstyle}-style])
1976 fi
1977
1978 if test "x$gethostbyaddrrstyle" = "xBSD"; then
1979   AC_MSG_WARN([ ****** BSD-style gethostbyaddr might NOT be thread-safe! ****** ])
1980 fi
1981
1982 dnl #
1983 dnl #  Check the style of gethostbyname, in order of preference
1984 dnl #  GNU (_r seven args)
1985 dnl #  SYSV (_r five args)
1986 dnl #  BSD (two args, may not be thread safe)
1987 dnl #  Tru64 has BSD version, but it _is_ thread safe
1988 dnl #    http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1946____.HTM
1989 dnl #  We need #stdio.h to define NULL on FreeBSD (at least)
1990 dnl #
1991 gethostbynamerstyle=""
1992 AC_MSG_CHECKING([gethostbyname_r() syntax])
1993 AC_TRY_LINK(
1994   [
1995     #include <stdio.h>
1996     #include <netdb.h>
1997   ],
1998   [ gethostbyname_r(NULL, NULL, NULL, 0, NULL, NULL) ],
1999   [
2000     AC_DEFINE(GETHOSTBYNAMERSTYLE, GNUSTYLE, [style of gethostbyname_r functions ])
2001     gethostbynamerstyle=GNU
2002   ]
2003 )
2004
2005 if test "x$gethostbynamerstyle" = "x"; then
2006   AC_TRY_LINK(
2007     [
2008       #include <stdio.h>
2009       #include <netdb.h>
2010     ],
2011     [ gethostbyname_r(NULL, NULL, NULL, 0, NULL) ] ,
2012     [
2013       AC_DEFINE(GETHOSTBYNAMERSTYLE, SYSVSTYLE, [style of gethostbyname_r functions ])
2014       gethostbynamerstyle=SYSV
2015     ]
2016   )
2017 fi
2018
2019 if test "x$gethostbynamerstyle" = "x"; then
2020   AC_TRY_LINK(
2021     [
2022       #include <stdio.h>
2023       #include <netdb.h>
2024     ],
2025     [ gethostbyname(NULL) ],
2026     [
2027       AC_DEFINE(GETHOSTBYNAMERSTYLE, BSDSTYLE, [style of gethostbyname_r functions ])
2028       gethostbynamerstyle=BSD
2029     ]
2030   )
2031 fi
2032
2033 if test "x$gethostbynamerstyle" = "x"; then
2034   AC_MSG_RESULT([none!  It must not exist, here.])
2035 else
2036   AC_MSG_RESULT([${gethostbynamerstyle}-style])
2037 fi
2038
2039 if test "x$gethostbynamerstyle" = "xBSD"; then
2040   AC_MSG_WARN([ ****** BSD-style gethostbyname might NOT be thread-safe! ****** ])
2041 fi
2042
2043 dnl #
2044 dnl #  Check for thread-safe getpwnam_r and getgrnam_r
2045 dnl #
2046 if test "x$ac_cv_header_pwd_h" = "xyes"; then
2047   AC_MSG_CHECKING([getpwnam_r])
2048   AC_TRY_LINK(
2049     [
2050       #include <stdlib.h>
2051       #include <sys/types.h>
2052       #include <pwd.h>
2053     ],
2054     [ getpwnam_r(NULL, NULL, NULL, 0, NULL) ],
2055     [
2056       AC_MSG_RESULT([yes])
2057       AC_DEFINE(HAVE_GETPWNAM_R, 1,
2058                 [Define to 1 if you have the getpwnam_r.]
2059                 )
2060     ],
2061     [
2062         AC_MSG_RESULT(no)
2063     ]
2064   )
2065 fi
2066
2067 if test "x$ac_cv_header_grp_h" = "xyes"; then
2068   AC_MSG_CHECKING([getgrnam_r])
2069   AC_TRY_LINK(
2070     [
2071       #include <stdlib.h>
2072       #include <sys/types.h>
2073       #include <grp.h>
2074     ],
2075     [ getgrnam_r(NULL, NULL, NULL, 0, NULL) ],
2076     [
2077       AC_MSG_RESULT([yes])
2078       AC_DEFINE(HAVE_GETGRNAM_R, 1,
2079                 [Define to 1 if you have the getgrnam_r.]
2080                 )
2081     ],
2082     [
2083         AC_MSG_RESULT(no)
2084     ]
2085   )
2086 fi
2087
2088
2089 dnl #
2090 dnl #  Check for non-posix solaris ctime_r (extra buflen int arg)
2091 dnl #
2092 AC_DEFINE(POSIXSTYLE, [1], [Posix-Style ctime_r])
2093 AC_DEFINE(SOLARISSTYLE, [2], [Solaris-Style ctime_r])
2094 ctimerstyle=""
2095 AC_MSG_CHECKING([ctime_r() syntax])
2096 AC_TRY_LINK(
2097   [
2098     #include <time.h>
2099   ],
2100   [ ctime_r(NULL, NULL, 0) ],
2101   [
2102     AC_DEFINE(CTIMERSTYLE, SOLARISSTYLE, [style of ctime_r function])
2103     ctimerstyle="SOLARIS"
2104   ]
2105 )
2106
2107 if test "x$ctimerstyle" = "x"; then
2108   AC_TRY_LINK(
2109     [
2110       #include <time.h>
2111     ],
2112     [ ctime_r(NULL, NULL) ],
2113     [
2114       AC_DEFINE(CTIMERSTYLE, POSIXSTYLE, [style of ctime_r function])
2115       ctimerstyle="POSIX"
2116     ]
2117   )
2118 fi
2119
2120 if test "x$ctimerstyle" = "x"; then
2121     AC_MSG_RESULT([none!  It must not exist, here.])
2122 else
2123     AC_MSG_RESULT([${ctimerstyle}-style])
2124 fi
2125
2126 AC_SUBST(HOSTINFO, $host)
2127
2128 dnl #############################################################
2129 dnl #
2130 dnl #  8. Checks for system services
2131 dnl #
2132 dnl #############################################################
2133
2134 dnl #
2135 dnl #  Figure out where libtool is located,
2136 dnl #
2137 top_builddir=`pwd`
2138 export top_builddir
2139 AC_MSG_RESULT([top_builddir=$top_builddir])
2140 dnl #  AC_SUBST(top_builddir)
2141
2142 dnl #
2143 dnl #  import libtool stuff
2144 dnl #
2145 dnl #############################################################
2146 dnl #
2147 dnl #  Configure in any module directories.
2148 dnl #
2149 dnl #############################################################
2150
2151 dnl ############################################################
2152 dnl #  Remove any conflicting definitions if autoconf.h
2153 dnl #  is being included by a module.
2154 dnl #############################################################
2155 AH_BOTTOM([#include <freeradius-devel/automask.h>])
2156
2157 dnl ############################################################
2158 dnl #  make modules by list
2159 dnl #############################################################
2160 if test "x$EXPERIMENTAL" = "xyes"; then
2161   for foo in `ls -1 "${srcdir}"/src/modules | grep rlm_`; do
2162     MODULES="$MODULES $foo"
2163   done
2164 else
2165    dnl #
2166    dnl #  make ONLY the stable modules
2167    dnl #
2168    for foo in `cat "${srcdir}"/src/modules/stable`; do
2169       MODULES="$MODULES $foo"
2170    done
2171 fi
2172
2173 dnl ############################################################
2174 dnl #  Add autoconf subdirs, based on the module list we
2175 dnl #  previously created.
2176 dnl #############################################################
2177 mysubdirs=""
2178 for bar in $MODULES; do
2179   if test -f "${srcdir}"/src/modules/$bar/configure; then
2180     mysubdirs="$mysubdirs src/modules/$bar"
2181   fi
2182 done
2183
2184 dnl #
2185 dnl #  Don't change the variable name here.  Autoconf goes bonkers
2186 dnl #  if you do.
2187 dnl #
2188 AC_CONFIG_SUBDIRS($mysubdirs)
2189 AC_SUBST(MODULES)
2190
2191 dnl #############################################################
2192 dnl #
2193 dnl #  Add -Werror last, so it doesn't interfere with autoconf's
2194 dnl #  test programs.
2195 dnl #
2196 dnl #############################################################
2197 if test "x$werror" == "xyes"; then
2198   CFLAGS="-Werror $CFLAGS"
2199 fi
2200
2201 dnl #############################################################
2202 dnl #
2203 dnl #  And finally, output the results.
2204 dnl #
2205 dnl #############################################################
2206 AC_CONFIG_COMMANDS([stamp-h], [echo timestamp > src/include/stamp-h])
2207 AC_CONFIG_COMMANDS([build-radpaths-h], [(cd ./src/include && /bin/sh ./build-radpaths-h)])
2208 AC_CONFIG_COMMANDS([main-chmod], [(cd ./src/main && chmod +x checkrad radlast radtest)])
2209 AC_CONFIG_COMMANDS([scripts-chmod], [(cd ./scripts && chmod +x rc.radiusd cron/radiusd.cron.daily cron/radiusd.cron.monthly cryptpasswd)])
2210
2211 dnl #
2212 dnl #  Substitute whatever libraries we found to be necessary
2213 dnl #
2214 AC_SUBST(LIBS)
2215 AC_SUBST(INSTALLSTRIP)
2216
2217 AC_SUBST(USE_SHARED_LIBS)
2218 USE_STATIC_LIBS="yes"
2219 AC_SUBST(USE_STATIC_LIBS)
2220 AC_SUBST(STATIC_MODULES)
2221
2222 AC_OUTPUT(\
2223   ./Make.inc \
2224   ./src/include/build-radpaths-h \
2225   ./src/main/radsniff.mk \
2226   ./src/main/checkrad \
2227   ./src/main/radlast \
2228   ./src/main/radtest \
2229   ./scripts/rc.radiusd \
2230   ./scripts/cron/radiusd.cron.daily \
2231   ./scripts/cron/radiusd.cron.monthly \
2232   ./scripts/cryptpasswd \
2233   ./raddb/radrelay.conf \
2234   ./raddb/radiusd.conf
2235 )