check for libradsec
[mech_eap.orig] / configure.ac
1 AC_PREREQ([2.61])
2 AC_INIT([mech_eap], [0.1], [bugs@project-moonshot.org])
3 dnl AC_CONFIG_MACRO_DIR([m4])
4 AM_INIT_AUTOMAKE
5 LT_PREREQ([2.2])
6 LT_INIT([dlopen disable-static])
7
8 AC_PROG_CC
9 AC_PROG_CXX
10 AC_CONFIG_HEADERS([config.h])
11
12 dnl Check if we're on Solaris and set CFLAGS accordingly
13 dnl AC_CANONICAL_TARGET
14 dnl case "${target_os}" in
15 dnl   solaris*)
16 dnl     TARGET_CFLAGS="-DSYS_SOLARIS9 -D_POSIX_PTHREAD_SEMANTICS"
17 dnl     if test "$GCC" != yes ; then
18 dnl       TARGET_CFLAGS="$TARGET_CFLAGS -mt"
19 dnl     else
20 dnl       TARGET_CFLAGS="$TARGET_CFLAGS -pthreads"
21 dnl     fi
22 dnl     TARGET_LDFLAGS="-lpthread -lsocket -lnsl"
23 dnl     ;;
24 dnl   *)
25 dnl     TARGET_CFLAGS="-Wall -pedantic -pthread"
26 dnl     TARGET_LDFLAGS=""
27 dnl   esac
28
29 reauth=no
30 AC_ARG_ENABLE(reauth,
31   [  --enable-reauth whether to enable fast reauthentication protocol: yes/no; default no ],
32   [ if test "x$enableval" = "xyes" -o "x$enableval" = "xno" ; then
33       reauth=$enableval
34     else
35       echo "--enable-reauth argument must be yes or no"
36       exit -1
37     fi
38   ])
39
40 if test "x$reauth" = "xyes" ; then
41   echo "Fast reauthentication protocol enabled"
42   TARGET_CFLAGS="$TARGET_CFLAGS -DGSSEAP_ENABLE_REAUTH"
43 fi
44 AM_CONDITIONAL(GSSEAP_ENABLE_REAUTH, test "$reauth" = "yes")
45
46 AC_SUBST(TARGET_CFLAGS)
47 AC_SUBST(TARGET_LDFLAGS)
48 AX_CHECK_KRB5
49 AX_CHECK_EAP
50 AX_CHECK_SHIBSP
51 AX_CHECK_SHIBRESOLVER
52 AX_CHECK_RADSEC
53 AC_CONFIG_FILES([Makefile])
54 AC_OUTPUT