Add rad_virtual_server to call rad_authenticate and rad_postauth
[freeradius.git] / configure.in
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 AC_INIT(src/main/radiusd.c)
26 AC_CONFIG_HEADER(src/include/autoconf.h)
27 AC_REVISION($Revision$)dnl
28
29 dnl # The version of the software
30 RADIUSD_VERSION=`cat VERSION`
31 RADIUSD_MAJOR_VERSION=`cat VERSION | sed 's/\..*//'`
32 RADIUSD_MINOR_VERSION=`cat VERSION | sed 's/^3\.//'`
33 PACKAGE=freeradius
34
35 dnl #############################################################
36 dnl #
37 dnl #  0. Checks for compiler, libtool, and command line options.
38 dnl #
39 dnl #############################################################
40
41 dnl Check for GNU cc
42 AC_PROG_CC
43 AC_PROG_CXX
44
45 dnl #
46 dnl # check for AIX, to allow us to use some BSD functions
47 dnl # must be before macros that call the compiler.
48 dnl #
49 AC_AIX
50
51 AC_PROG_GCC_TRADITIONAL
52 AC_PROG_CC_SUNPRO
53 AC_PROG_RANLIB
54
55 dnl #
56 dnl # Set Default CFLAGS
57 dnl #
58 if test "x$GCC" = "xyes"; then
59     CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
60 fi
61
62 dnl Compile in large (2G+) file support.
63 AC_SYS_LARGEFILE
64
65 dnl # check for system bytesex
66 dnl # AC_DEFINES WORDS_BIGENDIAN
67 AC_C_BIGENDIAN
68
69 dnl Find GNU Make.
70 AC_CHECK_PROG(GMAKE, gmake, yes, no)
71 if test $GMAKE = no; then
72   AC_PATH_PROG(MAKE, make, /usr/local/bin/make)
73 else
74   AC_PATH_PROG(MAKE, gmake, /usr/local/gnu/bin/make)
75 fi
76 makever=`$ac_cv_path_MAKE --version 2>&1 | grep "GNU Make"`
77 if test -z "$makever"; then
78   AC_MSG_ERROR(GNU Make is not installed.  Please download and install it
79                 from ftp://prep.ai.mit.edu/pub/gnu/make/ before continuing.)
80 fi
81
82 AC_ARG_WITH(system-libltdl,
83 [  --with-system-libltdl   Use the libltdl installed in your system (default=use dlopen)],
84 [
85 LIBLTDL="-lltdl"
86 INCLTDL=-DWITH_SYSTEM_LTDL
87 ],
88 )
89
90 dnl use system-wide libtool, if it exists
91 AC_ARG_WITH(system-libtool,
92 [  --with-system-libtool   Use the libtool installed in your system (default=use our own)],
93 [ AC_PATH_PROG(LIBTOOL, libtool,,$PATH:/usr/local/bin) AC_LIBTOOL_DLOPEN
94  AC_PROG_LIBTOOL],
95 [
96   LIBTOOL='${top_srcdir}/scripts/jlibtool'
97   AC_SUBST(LIBTOOL)
98   dnl ensure that we're looking for dlopen
99   AC_LIBTOOL_DLOPEN
100 ])
101
102
103 dnl Put this in later, when all distributed modules use autoconf.
104 dnl AC_ARG_WITH(disablemodulefoo,
105 dnl [  --without-rlm_foo       Disables module compilation.  Module list:]
106 dnl esyscmd([find src/modules -type d -name rlm_\* -print |\
107 dnl     sed -e 's%src/modules/.*/% (sub)- %; s%.*/%- %' |\
108 dnl     awk '{print "                            "$0}']))
109
110 AC_ARG_ENABLE(strict-dependencies,
111 [  --enable-strict-dependencies  Fail configure on lack of module dependancy.])
112
113 dnl extra argument: --with-docdir
114 docdir='${datadir}/doc/freeradius'
115 AC_MSG_CHECKING(docdir)
116 AC_ARG_WITH(docdir,
117 [  --with-docdir=DIR       Directory for documentation [DATADIR/doc/freeradius] ],
118 [ case "$withval" in
119     no)
120         docdir=no
121         ;;
122     yes)
123         ;;
124     [[\\/$]]* | ?:[[\\/]]* )
125         docdir="$withval"
126         ;;
127     *)
128         AC_MSG_ERROR([expected an absolute directory name for --with-docdir: $withval])
129         ;;
130   esac ]
131 )
132 AC_SUBST(docdir)
133 AC_MSG_RESULT($docdir)
134 if test "x$docdir" = xno; then
135         AC_MSG_WARN(Documentation files will NOT be installed.)
136 fi
137
138 dnl extra argument: --with-logdir
139 logdir='${localstatedir}/log/radius'
140 AC_MSG_CHECKING(logdir)
141 AC_ARG_WITH(logdir,
142 [  --with-logdir=DIR       Directory for logfiles [LOCALSTATEDIR/log/radius] ],
143 [ case "$withval" in
144     no)
145         AC_MSG_ERROR(Need logdir)
146         ;;
147     yes)
148         ;;
149     [[\\/$]]* | ?:[[\\/]]* )
150         logdir="$withval"
151         ;;
152     *)
153         AC_MSG_ERROR([expected an absolute directory name for --with-logdir: $withval])
154         ;;
155   esac ]
156 )
157 AC_SUBST(logdir)
158 AC_MSG_RESULT($logdir)
159
160 dnl extra argument: --with-radacctdir
161 radacctdir='${logdir}/radacct'
162 AC_MSG_CHECKING(radacctdir)
163 AC_ARG_WITH(radacctdir,
164 [  --with-radacctdir=DIR   Directory for detail files [LOGDIR/radacct] ],
165 [ case "$withval" in
166     no)
167         AC_MSG_ERROR(Need radacctdir)
168         ;;
169     yes)
170         ;;
171     [[\\/$]]* | ?:[[\\/]]* )
172         radacctdir="$withval"
173         ;;
174     *)
175         AC_MSG_ERROR([expected an absolute directory name for --with-radacctdir: $withval])
176         ;;
177   esac ]
178 )
179 AC_SUBST(radacctdir)
180 AC_MSG_RESULT($radacctdir)
181
182 dnl extra argument: --with-raddbdir
183 raddbdir='${sysconfdir}/raddb'
184 AC_MSG_CHECKING(raddbdir)
185 AC_ARG_WITH(raddbdir,
186 [  --with-raddbdir=DIR     Directory for config files [SYSCONFDIR/raddb] ],
187 [ case "$withval" in
188     no)
189         AC_MSG_ERROR(Need raddbdir)
190         ;;
191     yes)
192         ;;
193     [[\\/$]]* | ?:[[\\/]]* )
194         raddbdir="$withval"
195         ;;
196     *)
197         AC_MSG_ERROR([expected an absolute directory name for --with-raddbdir: $withval])
198         ;;
199   esac ]
200 )
201 AC_SUBST(raddbdir)
202 AC_MSG_RESULT($raddbdir)
203
204 dnl extra argument: --with-ascend-binary
205 ASCEND_BINARY=yes
206 AC_ARG_WITH(ascend-binary,
207 [  --with-ascend-binary    Include support for Ascend binary filter attributes (default=yes)],
208 [ case "$withval" in
209     yes)
210         ;;
211     *)
212         ASCEND_BINARY=""
213   esac ]
214 )
215 if test "X$ASCEND_BINARY" = "Xyes"; then
216   AC_DEFINE(ASCEND_BINARY, [], [Include support for Ascend binary filter attributes])
217 fi
218
219 dnl extra argument: --with-threads
220 WITH_THREADS=yes
221 AC_ARG_WITH(threads,
222 [  --with-threads          Use threads, if available.  (default=yes) ],
223 [ case "$withval" in
224     yes)
225         ;;
226     *)
227         WITH_THREADS=""
228   esac ]
229 )
230
231 dnl extra argument: --with-vmps
232 WITH_VMPS=yes
233 AC_ARG_WITH(vmps,
234 [  --with-vmps             Compile in VMPS support. (default=yes)],
235 [ case "$withval" in
236     yes)
237         ;;
238     *)
239         WITH_VMPS=no
240   esac ]
241 )
242 if test "x$WITH_VMPS" = "xyes"; then
243         AC_DEFINE(WITH_VMPS, [1], [define if you want VMPS support])
244 fi
245
246 dnl extra argument: --with-dhcp
247 WITH_DHCP=yes
248 AC_ARG_WITH(dhcp,
249 [  --with-dhcp             Compile in DHCP support. (default=yes)],
250 [ case "$withval" in
251     yes)
252         ;;
253     *)
254         WITH_DHCP=no
255   esac ]
256 )
257 if test "x$WITH_DHCP" = "xyes"; then
258         AC_DEFINE(WITH_DHCP, [1], [define if you want DHCP support])
259 fi
260
261
262 dnl #
263 dnl #  Allow the user to specify a list of modules to be linked
264 dnl #  statically to the server.
265 dnl #
266 STATIC_MODULES=
267 AC_ARG_WITH(static_modules,
268 [  --with-static-modules=QUOTED-MODULE-LIST],[
269   for i in $withval; do
270     STATIC_MODULES="$STATIC_MODULES -dlpreopen ../modules/rlm_$i/rlm_$i.la"
271   done
272 ])
273
274 MODULES=
275 AC_ARG_WITH(modules,
276 [ --with-modules=QUOTED-MODULE-LIST],[
277  for i in $withval; do
278    MODULES="$MODULES $i"
279  done
280 ])
281
282 dnl #
283 dnl #  Enable developer C compiler warnings
284 dnl #
285 AC_ARG_ENABLE(developer,
286 [  --enable-developer               Enables features of interest to developers.],
287 [ case "$enableval" in
288     no)
289         developer=no
290         ;;
291     *)
292         developer=yes
293   esac ]
294 )
295
296 if test "x$developer" != "xno" -a -d $srcdir/CVS; then
297   dnl turn on the developer flag when taken from a CVS checkout (not a release)
298   developer="yes"
299 fi
300
301 if test "x$developer" != "xno" -a -d $srcdir/.git; then
302   dnl turn on the developer flag when taken from a git checkout (not a release)
303   developer="yes"
304 fi
305
306 dnl extra argument: --with-experimental-modules
307 EXPERIMENTAL=
308 AC_ARG_WITH(experimental-modules,
309 [  --with-experimental-modules      Use experimental and unstable modules. (default=no) ],
310 [ case "$withval" in
311     yes)
312         EXPERIMENTAL=yes
313         ;;
314     *)
315   esac ]
316 )
317
318 dnl extra argument: --with-openssl
319 WITH_OPENSSL=yes
320 AC_ARG_WITH(openssl,
321 [  --with-openssl                   Use OpenSSL. (default=yes)],
322 [ case "$withval" in
323     no)
324         WITH_OPENSSL=no
325         ;;
326     *)
327         WITH_OPENSSL=yes
328         ;;
329   esac ]
330 )
331
332 dnl #
333 dnl # extra argument: --with-openssl-includes=dir
334 dnl #
335 OPENSSL_INCLUDE_DIR=
336 AC_ARG_WITH(openssl-includes,
337 [  --with-openssl-includes=DIR      Directory to look for OpenSSL include files],
338 [ case "$withval" in
339     *) OPENSSL_INCLUDE_DIR="$withval"
340         ;;
341   esac ]
342 )
343
344 dnl #
345 dnl # extra argument: --with-openssl-libraries=dir
346 dnl #
347 OPENSSL_LIB_DIR=
348 AC_ARG_WITH(openssl-libraries,
349 [  --with-openssl-libraries=DIR     Directory to look for OpenSSL library files],
350 [ case "$withval" in
351     *) OPENSSL_LIB_DIR="$withval"
352         ;;
353   esac ]
354 )
355
356 dnl #
357 dnl #  These next two arguments don't actually do anything.  They're
358 dnl #  place holders so that the top-level configure script can tell
359 dnl #  the user how to configure lower-level modules
360 dnl #
361
362 dnl #
363 dnl # extra argument: --with-rlm-FOO-lib-dir
364 dnl #
365 AC_ARG_WITH(rlm-FOO-lib-dir,
366 [  --with-rlm-FOO-lib-dir=DIR       Directory to look for library files used by module FOO],
367 [ case "$withval" in
368     *)
369         ;;
370   esac ]
371 )
372
373 dnl #
374 dnl # extra argument: --with-rlm-FOO-include-dir
375 dnl #
376 AC_ARG_WITH(rlm-FOO-include-dir,
377 [  --with-rlm-FOO-include-dir=DIR   Directory to look for include files used by module FOO],
378 [ case "$withval" in
379     *)
380         ;;
381   esac ]
382 )
383
384 dnl See what include-style is used by the make program.
385 dnl AC_MSG_CHECKING(include style for make)
386 dnl echo "include /dev/null" > testmake.$$
387 dnl echo "all:" >> testmake.$$
388 dnl make -f testmake.$$ >/dev/null 2>&1
389 dnl if test $? = 0
390 dnl then
391 dnl     INCLUDE=include
392 dnl     IQUOTE=
393 dnl else
394 dnl     INCLUDE=.include
395 dnl     IQUOTE='"'
396 dnl fi
397 dnl rm -f testmake.$$
398 dnl AC_MSG_RESULT(" $INCLUDE")
399 dnl AC_SUBST(INCLUDE)
400 dnl AC_SUBST(IQUOTE)
401
402 dnl extra argument: --with-udpfromto
403 WITH_UDPFROMTO=no
404 AC_ARG_WITH(udpfromto,
405 [  --with-udpfromto        Compile in UDPFROMTO support. (default=no)],
406 [ case "$withval" in
407     yes)
408         WITH_UDPFROMTO=yes
409         ;;
410     *)
411         WITH_UDPFROMTO=no
412   esac ]
413 )
414
415 if test "x$WITH_UDPFROMTO" = "xyes"; then
416         AC_DEFINE(WITH_UDPFROMTO, [], [define if you want udpfromto])
417 fi
418
419 dnl #############################################################
420 dnl #
421 dnl #  1. Checks for programs
422 dnl #
423 dnl #############################################################
424
425 CHECKRAD=checkrad.pl
426 AC_PATH_PROG(PERL, perl, /usr/local/bin/perl)
427 if test "x$ac_cv_path_PERL" = "x"; then
428   AC_MSG_WARN(perl not found - Simultaneous-Use and checkrad.pl may not work)
429 fi
430 AC_PATH_PROG(SNMPGET, snmpget)
431 if test "x$ac_cv_path_SNMPGET" = "x"; then
432   AC_MSG_WARN(snmpget not found - Simultaneous-Use and checkrad.pl may not work)
433 fi
434
435 AC_PATH_PROG(SNMPWALK, snmpwalk)
436 if test "x$ac_cv_path_SNMPWALK" = "x"; then
437   AC_MSG_WARN(snmpwalk not found - Simultaneous-Use and checkrad.pl may not work)
438 fi
439
440 AC_PATH_PROG(RUSERS, rusers, /usr/bin/rusers)
441
442 dnl FIXME This is truly gross.
443 missing_dir=`cd $ac_aux_dir && pwd`
444 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
445 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
446 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
447
448 AC_PATH_PROG(LOCATE,locate)
449 AC_PATH_PROG(DIRNAME,dirname)
450 AC_PATH_PROG(GREP,grep)
451
452 dnl #############################################################
453 dnl #
454 dnl #  2. Checks for libraries
455 dnl #
456 dnl #############################################################
457
458 dnl If using pthreads, check for -lpthread (posix) or -lc_r (*BSD)
459 old_CFLAGS=$CFLAGS
460 if test "x$WITH_THREADS" = "xyes"; then
461   if test $ac_cv_prog_suncc = "yes"; then
462     CFLAGS="$CFLAGS -mt"
463   fi
464
465   AC_CHECK_HEADERS(pthread.h, [], [ WITH_THREADS="no" ])
466
467 dnl #
468 dnl # pthread stuff is usually in -lpthread
469 dnl # or in -lc_r, on *BSD
470 dnl #
471 dnl # On Some systems, we need extra pre-processor flags, to get them to
472 dnl # to do the threading properly.
473 dnl #
474   AC_CHECK_LIB(pthread, pthread_create,
475                 [ CFLAGS="$CFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS"
476                   LIBS="-lpthread $LIBS" ],
477                 AC_CHECK_LIB(c_r, pthread_create,
478                             [ CFLAGS="$CFLAGS -pthread -D_THREAD_SAFE" ],
479                             [ WITH_THREADS="no" ]
480                             )
481                 )
482 fi
483
484 dnl #
485 dnl # If we have NO pthread libraries, remove any knowledge of threads.
486 dnl #
487 if test "x$WITH_THREADS" != "xyes"; then
488   CFLAGS=$old_CFLAGS
489   ac_cv_header_pthread_h="no"
490   WITH_THREADS=no
491 else
492   dnl #
493   dnl #  We need sem_init() and friends, as they're the friendliest
494   dnl #  semaphore functions for threading.
495   dnl #
496   dnl # HP/UX requires linking with librt, too, to get the sem_* symbols.
497   dnl # Some systems have them in -lsem
498   dnl # Solaris has them in -lposix4
499   dnl # NetBSD has them in -lsemaphore
500
501   AC_SEARCH_LIBS(sem_init, pthread sem posix4 rt semaphore,
502         [],
503         [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)]
504    )
505 fi
506
507 dnl Check if we need -lsocket
508 AC_CHECK_LIB(dl, dlopen)
509
510 dnl Check if we need -lsocket
511 AC_CHECK_LIB(socket, getsockname)
512
513 dnl Check for -lresolv
514 dnl This library may be needed later.
515 AC_CHECK_LIB(resolv, inet_aton)
516
517 dnl Check if we need -lnsl. Usually if we want to
518 dnl link against -lsocket we need to include -lnsl as well.
519 AC_CHECK_LIB(nsl, inet_ntoa)
520
521 dnl Check for OpenSSL libraries.
522 OPENSSL_LIBS=
523 if test "x$WITH_OPENSSL" = xyes; then
524   old_LIBS=$LIBS
525   old_LDFLAGS="$LDFLAGS"
526   if test "x$OPENSSL_LIB_DIR" != "x"; then
527     LDFLAGS="$LDFLAGS -L$OPENSSL_LIB_DIR"
528   fi
529   AC_CHECK_LIB(crypto, DH_new,
530     [
531         LIBS="-lcrypto $LIBS"
532         AC_DEFINE(HAVE_LIBCRYPTO, 1,
533             [Define to 1 if you have the `crypto' library (-lcrypto).])
534         AC_CHECK_LIB(ssl, SSL_new,
535             [
536                 AC_DEFINE(HAVE_LIBSSL, 1,
537                     [Define to 1 if you have the `ssl' library (-lssl).])
538                 if test "x$OPENSSL_LIB_DIR" != "x"; then
539                     OPENSSL_LIBS="-L$OPENSSL_LIB_DIR"
540                 fi
541                 OPENSSL_LIBS="$OPENSSL_LIBS -lcrypto -lssl -lcrypto"
542             ], [])
543     ], [])
544   LIBS=$old_LIBS
545   LDFLAGS="$old_LDFLAGS"
546 fi
547
548 AC_CHECK_LIB(ws2_32, htonl)
549
550 dnl Check the pcap library for the RADIUS sniffer.
551 PCAP_LIBS=
552 AC_CHECK_LIB(pcap, pcap_open_live,
553         [ PCAP_LIBS="-lpcap"
554         AC_DEFINE(HAVE_LIBPCAP, 1,
555                 [Define to 1 if you have the `pcap' library (-lpcap).])
556         ],
557         [ AC_MSG_WARN([pcap library not found, silently disabling the RADIUS sniffer.]) ])
558
559 AC_LIB_READLINE
560
561 dnl #############################################################
562 dnl #
563 dnl #  3. Checks for header files
564 dnl #
565 dnl #############################################################
566
567 dnl #
568 dnl # Interix requires us to set -D_ALL_SOURCE, otherwise
569 dnl # getopt will be #included, but won't link.  <sigh>
570 dnl #
571 dnl #
572 case "$host" in
573 *-interix*)
574         CFLAGS="$CFLAGS -D_ALL_SOURCE"
575         ;;
576 *-darwin*)
577         CFLAGS="$CFLAGS -DDARWIN"
578         LIBS="-framework DirectoryService $LIBS"
579         ;;
580 esac
581
582 AC_HEADER_DIRENT
583 AC_HEADER_STDC
584 AC_HEADER_TIME
585 AC_HEADER_SYS_WAIT
586
587 AC_CHECK_HEADERS( \
588         unistd.h \
589         crypt.h \
590         errno.h \
591         resource.h \
592         sys/resource.h \
593         getopt.h \
594         malloc.h \
595         utmp.h \
596         utmpx.h \
597         signal.h \
598         sys/select.h \
599         syslog.h \
600         inttypes.h \
601         stdint.h \
602         stdio.h \
603         netdb.h \
604         semaphore.h \
605         arpa/inet.h \
606         netinet/in.h \
607         sys/types.h \
608         sys/socket.h \
609         winsock.h \
610         sys/time.h \
611         sys/wait.h \
612         sys/security.h \
613         fcntl.h \
614         sys/fcntl.h \
615         sys/prctl.h \
616         sys/un.h \
617         glob.h \
618         prot.h \
619         pwd.h \
620         grp.h \
621         stddef.h \
622         fnmatch.h \
623         sia.h \
624         siad.h
625 )
626
627 dnl FreeBSD requires sys/socket.h before net/if.h
628 AC_CHECK_HEADERS(net/if.h, [], [],
629 [#ifdef HAVE_SYS_SOCKET_H
630 # include <sys/socket.h>
631 # endif
632 ])
633
634 REGEX=no
635 AC_CHECK_HEADER(pcreposix.h, AC_DEFINE(HAVE_PCREPOSIX_H, [], [define this if we have the <pcreposix.h> header file]))
636 if test "x$ac_cv_header_pcreposix_h" = "xyes"; then
637   AC_DEFINE(HAVE_REGEX_H, [], [define if we have any regex])
638   REGEX_EXTENDED=yes
639   REGEX_PCRE=yes
640   REGEX=yes
641   LIBS="$LIBS -lpcreposix"
642 else
643
644 AC_CHECK_HEADER(regex.h, AC_DEFINE(HAVE_REGEX_H, [], [define this if we have the <regex.h> header file]))
645 if test "x$ac_cv_header_regex_h" = "xyes"; then
646   REGEX_EXTENDED=no
647   REGEX_PCRE=no
648   REGEX=yes
649   AC_EGREP_CPP(yes,
650     [#include <regex.h>
651      #ifdef REG_EXTENDED
652        yes
653      #endif
654      ], [AC_DEFINE(HAVE_REG_EXTENDED, [], [define this if we have REG_EXTENDED (from <regex.h>)]) REGEX_EXTENDED=yes])
655 fi
656 fi
657
658 AC_SUBST(REGEX)
659 AC_SUBST(REGEX_PCRE)
660 AC_SUBST(REGEX_EXTENDED)
661
662 dnl #
663 dnl #  other checks which require headers
664 dnl #
665 if test "x$ac_cv_header_sys_security_h" = "xyes" && test "x$ac_cv_header_prot_h" = "xyes"
666 then
667   AC_DEFINE(OSFC2, [], [define if you have OSFC2 authentication])
668 fi
669
670 if test "x$ac_cv_header_sia_h" = "xyes" && test "x$ac_cv_header_siad_h" = "xyes"
671 then
672   AC_DEFINE(OSFSIA, [], [define if you have OSFSIA authentication])
673 fi
674
675 dnl Check for OpenSSL includes.
676 OPENSSL_INCLUDE="-DNO_OPENSSL"
677 if test "x$WITH_OPENSSL" = xyes; then
678   if test "x$OPENSSL_LIBS" = "x"; then
679     AC_MSG_NOTICE([skipping test for openssl/ssl.h])
680   else
681     old_CPPFLAGS=$CPPFLAGS
682     if test "x$OPENSSL_INCLUDE_DIR" != "x"; then
683         CPPFLAGS="$CPPFLAGS -I$OPENSSL_INCLUDE_DIR"
684     fi
685     dnl # stupid RedHat shit
686     CPPFLAGS="$CPPFLAGS -DOPENSSL_NO_KRB5"
687     AC_CHECK_HEADERS( \
688         openssl/ssl.h \
689         openssl/crypto.h \
690         openssl/err.h \
691         openssl/evp.h \
692         openssl/md5.h \
693         openssl/md4.h \
694         openssl/sha.h \
695         openssl/ocsp.h \
696         openssl/engine.h,
697         [],
698         OPENSSL_LIBS=
699     )
700     if test "x$OPENSSL_LIBS" != "x"; then
701         AC_MSG_CHECKING([for OpenSSL version >= 0.9.7])
702         AC_EGREP_CPP(yes,
703             [#include <openssl/crypto.h>
704              #if (OPENSSL_VERSION_NUMBER >= 0x00907000L)
705              yes
706              #endif
707             ], goodssl="yes")
708         if test "x$goodssl" != "xyes"; then
709             AC_MSG_RESULT(no)
710             OPENSSL_LIBS=
711         else
712             AC_MSG_RESULT(yes)
713             if test "x$OPENSSL_INCLUDE_DIR" != "x"; then
714                 OPENSSL_INCLUDE="-I$OPENSSL_INCLUDE_DIR -DOPENSSL_NO_KRB5"
715             else
716                 OPENSSL_INCLUDE="-DOPENSSL_NO_KRB5"
717             fi
718         fi
719     fi
720     CPPFLAGS=$old_CPPFLAGS
721   fi
722 fi
723 AC_SUBST(OPENSSL_INCLUDE)
724 AC_SUBST(OPENSSL_LIBS)
725 export OPENSSL_LIBS
726
727 dnl Check the pcap includes for the RADIUS sniffer.
728 if test "x$PCAP_LIBS" = x; then
729     AC_MSG_NOTICE([skipping test for pcap.h.])
730 else
731     AC_CHECK_HEADER(pcap.h,
732         AC_DEFINE(HAVE_PCAP_H, 1,
733                 [Define to 1 if you have the <pcap.h> header file.]),
734         [ PCAP_LIBS=
735         AC_MSG_WARN([pcap.h not found, silently disabling the RADIUS sniffer.])
736         ])
737
738     AC_CHECK_LIB(pcap, pcap_fopen_offline,
739         [ AC_DEFINE(HAVE_PCAP_FOPEN_OFFLINE, 1,
740                 [Define to 1 if you have the function pcap_fopen_offline.])
741         ])
742     AC_CHECK_LIB(pcap, pcap_dump_fopen,
743         [ AC_DEFINE(HAVE_PCAP_DUMP_FOPEN, 1,
744                 [Define to 1 if you have the function pcap_dump_fopen.])
745         ])
746 fi
747 AC_SUBST(PCAP_LIBS)
748
749 dnl #############################################################
750 dnl #
751 dnl #  4. Checks for typedefs
752 dnl #
753 dnl #############################################################
754
755 dnl #
756 dnl # Ensure that these are defined
757 dnl #
758 AC_TYPE_OFF_T
759 AC_TYPE_PID_T
760 AC_TYPE_SIZE_T
761 AC_TYPE_UID_T
762
763 dnl check for socklen_t
764 FR_CHECK_TYPE_INCLUDE([
765 #ifdef HAVE_SYS_TYPES_H
766 #include <sys/types.h>
767 #endif
768 #ifdef HAVE_SYS_SOCKET_H
769 #include <sys/socket.h>
770 #endif
771 ],socklen_t, int, [socklen_t is generally 'int' on systems which don't use it])
772
773 dnl check for uint8_t
774 FR_CHECK_TYPE_INCLUDE([
775 #ifdef HAVE_INTTYPES_H
776 #include <inttypes.h>
777 #endif
778 #ifdef HAVE_STDINT_H
779 #include <stdint.h>
780 #endif
781 ],uint8_t, unsigned char, [uint8_t should be the canonical 'octet' for network traffic])
782
783 dnl check for uint16_t
784 FR_CHECK_TYPE_INCLUDE([
785 #ifdef HAVE_INTTYPES_H
786 #include <inttypes.h>
787 #endif
788 #ifdef HAVE_STDINT_H
789 #include <stdint.h>
790 #endif
791 ],uint16_t, unsigned short, [uint16_t should be the canonical '2 octets' for network traffic])
792
793 dnl check for uint32_t
794 FR_CHECK_TYPE_INCLUDE([
795 #ifdef HAVE_INTTYPES_H
796 #include <inttypes.h>
797 #endif
798 #ifdef HAVE_STDINT_H
799 #include <stdint.h>
800 #endif
801 ],uint32_t, unsigned int, [uint32_t should be the canonical 'network integer])
802
803 AC_CHECK_TYPE(struct in6_addr, AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1, [IPv6 address structure]), [], [
804 #ifdef HAVE_NETINET_IN_H
805 #include <netinet/in.h>
806 #endif
807 ])
808
809 AC_CHECK_TYPE(struct sockaddr_storage, AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1, [Generic socket addresses]), [], [
810 #ifdef HAVE_NETINET_IN_H
811 #include <netinet/in.h>
812 #endif
813 #ifdef HAVE_SYS_SOCKET_H
814 #include <sys/socket.h>
815 #endif
816 ])
817
818 AC_CHECK_TYPE(struct sockaddr_in6, AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1, [IPv6 socket addresses]), [], [
819 #ifdef HAVE_NETINET_IN_H
820 #include <netinet/in.h>
821 #endif
822 ])
823
824 AC_CHECK_TYPE(struct addrinfo, AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [Generic DNS lookups]), [], [
825 #ifdef HAVE_SYS_TYPES_H
826 #include <sys/types.h>
827 #endif
828 #ifdef HAVE_SYS_SOCKET_H
829 #include <sys/socket.h>
830 #endif
831 #ifdef HAVE_NETDB_H
832 #include <netdb.h>
833 #endif
834 ])
835
836 dnl #############################################################
837 dnl #
838 dnl #  5. Checks for structures and functions
839 dnl #
840 dnl #############################################################
841 AC_CHECK_FUNCS( \
842         getopt_long \
843         lockf \
844         strsignal \
845         sigaction \
846         sigprocmask \
847         pthread_sigmask \
848         snprintf \
849         vsnprintf \
850         setsid \
851         strncasecmp \
852         strcasecmp \
853         localtime_r \
854         ctime_r \
855         gmtime_r \
856         strsep \
857         inet_aton \
858         inet_pton \
859         inet_ntop \
860         setlinebuf \
861         setvbuf \
862         getusershell \
863         initgroups \
864         getaddrinfo \
865         getnameinfo \
866         closefrom \
867         gettimeofday \
868         getpeereid \
869         setuid \
870         setresuid \
871         getresuid \
872         strlcat \
873         strlcpy
874 )
875 RADIUSD_NEED_DECLARATIONS( \
876         crypt \
877         strncasecmp \
878         strcasecmp \
879         inet_aton \
880         setlinebuf \
881         getusershell \
882         endusershell
883 )
884
885 AC_TYPE_SIGNAL
886
887 dnl # check if we have utmpx.h
888 dnl # if so, check if struct utmpx has entry ut_xtime
889 dnl # if not, set it to define ut_xtime == ut_tv.tv_sec
890 if test "x$ac_cv_header_utmpx_h" = "xyes"
891 then
892  FR_CHECK_STRUCT_HAS_MEMBER([#include <utmpx.h>], [struct utmpx], ut_xtime)
893  if test "x$ac_cv_type_struct_utmpx_has_ut_xtime" = "x"
894  then
895    AC_DEFINE(ut_xtime,ut_tv.tv_sec, [define to something if you don't have ut_xtime in struct utmpx])
896  fi
897 fi
898
899 dnl # struct ip_pktinfo
900 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in_pktinfo], ipi_addr)
901 if test "x$ac_cv_type_struct_in_pktinfo_has_ipi_addr" = "xyes"
902 then
903         AC_DEFINE(HAVE_IP_PKTINFO, [], [define if you have IP_PKTINFO (Linux)])
904 fi
905
906 dnl # struct in6_pktinfo
907 FR_CHECK_STRUCT_HAS_MEMBER([#include <netinet/in.h>], [struct in6_pktinfo], ipi6_addr)
908 if test "x$ac_cv_type_struct_in6_pktinfo_has_ipi6_addr" = "xyes"
909 then
910         AC_DEFINE(HAVE_IN6_PKTINFO, [], [define if you have IN6_PKTINFO (Linux)])
911 fi
912
913 dnl #############################################################
914 dnl #
915 dnl #  6. Checks for compiler characteristics
916 dnl #
917 dnl #############################################################
918
919 dnl #
920 dnl # Ensure that these are defined
921 dnl #
922 AC_C_CONST
923
924 dnl #
925 dnl # See if this is OS/2
926 dnl #
927 AC_MSG_CHECKING(type of OS)
928 OS=`uname -s`
929 AC_MSG_RESULT($OS)
930 if test "$OS" = "OS/2"; then
931         LIBPREFIX=
932 else
933         LIBPREFIX=lib
934 fi
935 AC_SUBST(LIBPREFIX)
936
937 AC_MSG_CHECKING(for developer gcc flags)
938 if test "x$developer" = "xyes" -a "x$GCC" = "xyes"; then
939   devflags="-g -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  -Wformat-nonliteral -Wformat-security -Wformat=2"
940   CFLAGS="$CFLAGS $devflags"
941   INSTALLSTRIP=""
942   AC_MSG_RESULT(yes.  Using $devflags)
943 else
944   devflags=""
945   CFLAGS="$CFLAGS -DNDEBUG"
946   INSTALLSTRIP=""
947   AC_MSG_RESULT(no.)
948 fi
949
950 FR_TLS
951
952 dnl #############################################################
953 dnl #
954 dnl #  7. Checks for library functions
955 dnl #
956 dnl #############################################################
957
958 old_LIBS="$LIBS"
959 LIBS="$LIBS $LIBLTDL"
960 AC_CHECK_FUNC(lt_dladvise_init, AC_DEFINE(HAVE_LT_DLADVISE_INIT, [], [Do we have the lt_dladvise_init function]))
961 LIBS="$old_LIBS"
962
963 dnl Check for libcrypt
964 dnl We use crypt(3) which may be in libc, or in libcrypt (eg FreeBSD)
965 AC_CHECK_LIB(crypt, crypt,
966   CRYPTLIB="-lcrypt"
967 )
968 if test "$CRYPTLIB" != ""; then
969   AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function])
970 else
971   AC_CHECK_FUNC(crypt, AC_DEFINE(HAVE_CRYPT, [], [Do we have the crypt function]))
972 fi
973
974 dnl Check for libcipher
975 AC_CHECK_LIB(cipher, setkey,
976    CRYPTLIB="${CRYPTLIB} -lcipher"
977 )
978 AC_SUBST(CRYPTLIB)
979
980 dnl Check the style of gethostbyaddr, in order of preference
981 dnl GNU (_r eight args)
982 AC_DEFINE(GNUSTYLE, [1], [GNU-Style get*byaddr_r])
983 dnl SYSV (_r six args)
984 AC_DEFINE(SYSVSTYLE, [2], [SYSV-Style get*byaddr_r])
985 dnl BSD (three args, may not be thread safe)
986 AC_DEFINE(BSDSTYLE, [3], [BSD-Style get*byaddr_r])
987 dnl Tru64 has BSD version, but it is thread safe
988 dnl     http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1739____.HTM
989 dnl We need #stdio.h to define NULL on FreeBSD (at least)
990 gethostbyaddrrstyle=""
991 AC_MSG_CHECKING([gethostbyaddr_r() syntax])
992 case "$host" in
993 *-freebsd*)
994 dnl With FreeBSD, check if there's a prototype for gethostbyaddr_r.
995 dnl Some versions (FreeBSD 5.1?) have a symbol but no prototype - so we
996 dnl override this test to BSDSTYLE. FreeBSD 6.2 and up have proper GNU
997 dnl style support.
998         AC_CHECK_DECLS([gethostbyaddr_r], [], [
999                 AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE,
1000                         [style of gethostbyaddr_r functions ])
1001                 gethostbyaddrrstyle=BSD
1002                 AC_MSG_WARN([FreeBSD overridden to BSD-style])
1003         ], [
1004 #ifdef HAVE_NETDB_H
1005 #include <netdb.h>
1006 #endif
1007 ])
1008         ;;
1009 esac
1010 if test "x$gethostbyaddrrstyle" = "x"; then
1011         AC_TRY_LINK([
1012 #include <stdio.h>
1013 #include <netdb.h>
1014 ], [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL, NULL) ], [
1015         AC_DEFINE(GETHOSTBYADDRRSTYLE, GNUSTYLE, [style of gethostbyaddr_r functions ])
1016         gethostbyaddrrstyle=GNU
1017 ])
1018 fi
1019 if test "x$gethostbyaddrrstyle" = "x"; then
1020         AC_TRY_LINK([
1021 #include <stdio.h>
1022 #include <netdb.h>
1023 ], [ gethostbyaddr_r(NULL, 0, 0, NULL, NULL, 0, NULL) ] , [
1024                 AC_DEFINE(GETHOSTBYADDRRSTYLE, SYSVSTYLE, [style of gethostbyaddr_r functions ])
1025                 gethostbyaddrrstyle=SYSV
1026         ])
1027 fi
1028 if test "x$gethostbyaddrrstyle" = "x"; then
1029         AC_TRY_LINK([
1030 #include <stdio.h>
1031 #include <netdb.h>
1032 ], [ gethostbyaddr(NULL, 0, 0)  ], [
1033                 AC_DEFINE(GETHOSTBYADDRRSTYLE, BSDSTYLE, [style of gethostbyaddr_r functions ])
1034                 gethostbyaddrrstyle=BSD
1035         ])
1036 fi
1037
1038 if test "x$gethostbyaddrrstyle" = "x"; then
1039         AC_MSG_RESULT([none!  It must not exist, here.])
1040 else
1041         AC_MSG_RESULT([${gethostbyaddrrstyle}-style])
1042 fi
1043
1044 if test "x$gethostbyaddrrstyle" = "xBSD"; then
1045         AC_MSG_WARN([ ****** BSD-style gethostbyaddr might NOT be thread-safe! ****** ])
1046 fi
1047
1048 dnl Check the style of gethostbyname, in order of preference
1049 dnl GNU (_r seven args)
1050 dnl SYSV (_r five args)
1051 dnl BSD (two args, may not be thread safe)
1052 dnl Tru64 has BSD version, but it _is_ thread safe
1053 dnl     http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN3/1946____.HTM
1054 dnl We need #stdio.h to define NULL on FreeBSD (at least)
1055 gethostbynamerstyle=""
1056 AC_MSG_CHECKING([gethostbyname_r() syntax])
1057 AC_TRY_LINK([
1058 #include <stdio.h>
1059 #include <netdb.h>
1060 ], [ gethostbyname_r(NULL, NULL, NULL, 0, NULL, NULL) ], [
1061         AC_DEFINE(GETHOSTBYNAMERSTYLE, GNUSTYLE, [style of gethostbyname_r functions ])
1062         gethostbynamerstyle=GNU
1063 ])
1064 if test "x$gethostbynamerstyle" = "x"; then
1065         AC_TRY_LINK([
1066 #include <stdio.h>
1067 #include <netdb.h>
1068 ], [ gethostbyname_r(NULL, NULL, NULL, 0, NULL) ] , [
1069                 AC_DEFINE(GETHOSTBYNAMERSTYLE, SYSVSTYLE, [style of gethostbyname_r functions ])
1070                 gethostbynamerstyle=SYSV
1071         ])
1072 fi
1073 if test "x$gethostbynamerstyle" = "x"; then
1074         AC_TRY_LINK([
1075 #include <stdio.h>
1076 #include <netdb.h>
1077 ], [ gethostbyname(NULL)  ], [
1078                 AC_DEFINE(GETHOSTBYNAMERSTYLE, BSDSTYLE, [style of gethostbyname_r functions ])
1079                 gethostbynamerstyle=BSD
1080         ])
1081 fi
1082
1083 if test "x$gethostbynamerstyle" = "x"; then
1084         AC_MSG_RESULT([none!  It must not exist, here.])
1085 else
1086         AC_MSG_RESULT([${gethostbynamerstyle}-style])
1087 fi
1088
1089 if test "x$gethostbynamerstyle" = "xBSD"; then
1090         AC_MSG_WARN([ ****** BSD-style gethostbyname might NOT be thread-safe! ****** ])
1091 fi
1092
1093 dnl check for non-posix solaris ctime_r (extra buflen int arg)
1094 AC_DEFINE(POSIXSTYLE, [1], [Posix-Style ctime_r])
1095 AC_DEFINE(SOLARISSTYLE, [2], [Solaris-Style ctime_r])
1096 ctimerstyle=""
1097 AC_MSG_CHECKING([ctime_r() syntax])
1098 AC_TRY_LINK([
1099 #include <time.h>
1100 ], [ ctime_r(NULL, NULL, 0) ], [
1101         AC_DEFINE(CTIMERSTYLE, SOLARISSTYLE, [style of ctime_r function])
1102         ctimerstyle="SOLARIS"
1103 ])
1104 if test "x$ctimerstyle" = "x"; then
1105         AC_TRY_LINK([
1106 #include <time.h>
1107 ], [ ctime_r(NULL, NULL) ], [
1108                 AC_DEFINE(CTIMERSTYLE, POSIXSTYLE, [style of ctime_r function])
1109                 ctimerstyle="POSIX"
1110         ])
1111 fi
1112
1113 if test "x$ctimerstyle" = "x"; then
1114         AC_MSG_RESULT([none!  It must not exist, here.])
1115 else
1116         AC_MSG_RESULT([${ctimerstyle}-style])
1117 fi
1118
1119 AC_SUBST(HOSTINFO, $host)
1120
1121 dnl #############################################################
1122 dnl #
1123 dnl #  8. Checks for system services
1124 dnl #
1125 dnl #############################################################
1126
1127 dnl #
1128 dnl # Figure out where libtool is located,
1129 dnl #
1130 top_builddir=`pwd`
1131 export top_builddir
1132 AC_MSG_RESULT([top_builddir=$top_builddir])
1133 dnl # AC_SUBST(top_builddir)
1134 AC_SUBST(LIBLTDL)
1135 AC_SUBST(INCLTDL)
1136
1137 dnl import libtool stuff
1138
1139 dnl #############################################################
1140 dnl #
1141 dnl #  Configure in any module directories.
1142 dnl #
1143 dnl #############################################################
1144
1145 mysubdirs=""
1146 if test "x$EXPERIMENTAL" = "xyes"; then
1147   bar=`ls -1 "${srcdir}"/src/modules/rlm_*/configure | sed 's%/configure%%'`
1148   dnl # get rid of LF's.
1149   mysubdirs=`echo $mysubdirs $bar`
1150 else
1151   dnl #
1152   dnl # Find 'configure' in ONLY the stable modules
1153   dnl #
1154   for bar in `cat "${srcdir}"/src/modules/stable`; do
1155     if test -f "${srcdir}"/src/modules/$bar/configure; then
1156       mysubdirs="$mysubdirs src/modules/$bar"
1157     fi
1158   done
1159 fi
1160
1161 dnl ############################################################
1162 dnl # make modules by list
1163 dnl #############################################################
1164 if test "x$EXPERIMENTAL" = "xyes"; then
1165   for foo in `ls -1 "${srcdir}"/src/modules | grep rlm_`; do
1166     MODULES="$MODULES $foo"
1167   done
1168 else
1169    dnl #
1170    dnl # make ONLY the stable modules
1171    dnl #
1172    for foo in `cat "${srcdir}"/src/modules/stable`; do
1173     MODULES="$MODULES $foo"
1174    done
1175 fi
1176
1177 dnl #
1178 dnl #  Don't change the variable name here.  Autoconf goes bonkers
1179 dnl #  if you do.
1180 dnl #
1181 AC_CONFIG_SUBDIRS($mysubdirs)
1182 AC_SUBST(MODULES)
1183
1184 dnl #############################################################
1185 dnl #
1186 dnl #  And finally, output the results.
1187 dnl #
1188 dnl #############################################################
1189
1190 AC_CONFIG_COMMANDS([stamp-h], [echo timestamp > src/include/stamp-h])
1191 AC_CONFIG_COMMANDS([build-radpaths-h], [(cd ./src/include && /bin/sh ./build-radpaths-h)])
1192 AC_CONFIG_COMMANDS([main-chmod], [(cd ./src/main   && chmod +x checkrad.pl radlast radtest)])
1193 AC_CONFIG_COMMANDS([scripts-chmod], [(cd ./scripts    && chmod +x rc.radiusd radiusd.cron.daily radiusd.cron.monthly cryptpasswd)])
1194
1195 dnl #
1196 dnl #  Substitute whatever libraries we found to be necessary
1197 dnl #
1198 AC_SUBST(LIBS)
1199 AC_SUBST(INSTALLSTRIP)
1200
1201 USE_SHARED_LIBS=$enable_shared
1202 AC_SUBST(USE_SHARED_LIBS)
1203 USE_STATIC_LIBS=$enable_static
1204 AC_SUBST(USE_STATIC_LIBS)
1205 AC_SUBST(STATIC_MODULES)
1206 AC_SUBST(RADIUSD_MAJOR_VERSION)
1207 AC_SUBST(RADIUSD_MINOR_VERSION)
1208 AC_SUBST(RADIUSD_VERSION)
1209
1210 AC_OUTPUT(\
1211         ./Make.inc \
1212         ./src/include/build-radpaths-h \
1213         ./src/main/Makefile \
1214         ./src/main/radsniff.mk \
1215         ./src/main/checkrad.pl \
1216         ./src/main/radlast \
1217         ./src/main/radtest \
1218         ./scripts/rc.radiusd \
1219         ./scripts/radiusd.cron.daily \
1220         ./scripts/radiusd.cron.monthly \
1221         ./scripts/cryptpasswd \
1222         ./raddb/dictionary \
1223         ./raddb/radrelay.conf \
1224         ./raddb/radiusd.conf
1225 )