Some calls declared static to make gcc stop complainig about non existing prototypes
[mod_auth_kerb.cvs/.git] / configure.in
1 # Process this file with autoconf to produce a configure script.
2 AC_REVISION($Revision$)
3 AC_PREREQ(2.57)
4 AC_INIT(mod_auth_kerb, 5.0-rc7, modauthkerb-developers@lists.sourceforge.net)
5 AC_CONFIG_SRCDIR([src/mod_auth_kerb.c])
6 AC_CONFIG_HEADER([config.h])
7
8 # Checks for programs.
9 AC_PROG_CC
10 AC_PROG_MAKE_SET
11
12 # Checks for libraries.
13 # FIXME: Replace `main' with a function in `-lresolv':
14 LIB_resolv=""
15 AC_CHECK_LIB([resolv], [main], [LIB_resolv=-lresolv])
16 AC_SUBST(LIB_resolv)
17
18 # Checks for header files.
19 AC_HEADER_STDC
20 AC_CHECK_HEADERS([limits.h netdb.h stddef.h stdlib.h string.h unistd.h])
21
22 # Checks for typedefs, structures, and compiler characteristics.
23 #AC_C_CONST
24 AC_TYPE_SIZE_T
25 AC_STRUCT_TM
26
27 # Checks for library functions.
28 #AC_FUNC_MALLOC
29 #AC_FUNC_MEMCMP
30 #AC_CHECK_FUNCS([gethostbyname memset putenv strcasecmp strchr strdup strerror])
31
32 #
33 # kerberos5 enviroment
34 #
35 krb5_config_command=krb5-config
36 SPNEGO_SRCS=""
37
38 AC_ARG_WITH(krb5,
39   AC_HELP_STRING([--with-krb5=dir],[use krb5 in dir]),
40   [ with_krb5="$withval" ])
41
42 if test "x$with_krb5" != "xno" ; then
43   ac_save_CPPFLAGS="$CPPFLAGS"
44   ac_save_LDFLAGS="$LDFLAGS"
45   ac_save_LIBS="$LIBS"
46    
47   if test -n "$with_krb5"; then
48      if test -x "$with_krb5/bin/krb5-config"; then
49         krb5_config_command="$with_krb5/bin/krb5-config"
50      else
51         krb5_config_command=""
52      fi
53   fi
54
55   dnl
56   dnl find header files
57   dnl
58
59   if test -z "$KRB5_CPPFLAGS"; then
60      TMP_KRB5_CPPFLAGS=""
61      if test -n "$krb5_config_command"; then
62         TMP_KRB5_CPPFLAGS=`$krb5_config_command --cflags gssapi 2>/dev/null`
63      fi
64      if test -z "$TMP_KRB5_CPPFLAGS"; then
65         TMP_KRB5_CPPFLAGS="-I$with_krb5/include"
66      fi
67      CPPFLAGS="$CPPFLAGS $TMP_KRB5_CPPFLAGS"
68      AC_CHECK_HEADERS(gssapi.h, 
69                       [ KRB5_CPPFLAGS="$TMP_KRB5_CPPFLAGS" ])
70      if test -z "$KRB5_CPPFLAGS"; then
71         AC_CHECK_HEADERS(gssapi/gssapi.h, 
72                          [ KRB5_CPPFLAGS="$TMP_KRB5_CPPFLAGS" ])
73      fi
74      CPPFLAGS="$ac_save_CPPFLAGS" 
75   fi
76
77   dnl
78   dnl find libraries
79   dnl
80
81   if test -z "$KRB5_LDFLAGS" -a -n "$krb5_config_command"; then
82      TMP_KRB5_LDFLAGS=`$krb5_config_command --libs gssapi 2>/dev/null`
83      if test -n "$TMP_KRB5_LDFLAGS"; then
84         LIBS="$LIBS $TMP_KRB5_LDFLAGS $LIB_resolv"
85         AC_CHECK_LIB(krb5, krb5_init_context,
86                      [ KRB5_LDFLAGS="$TMP_KRB5_LDFLAGS" ])
87         LIBS="$ac_save_LIBS"
88      fi
89   fi
90
91   if test -z "$KRB5_LDFLAGS"; then
92      #try MIT
93      TMP_KRB5_LDFLAGS="-L$with_krb5/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err"
94      LIBS="$LIBS $TMP_KRB5_LDFLAGS $LIB_resolv"
95      AC_CHECK_LIB(krb5, krb5_init_context, [ KRB5_LDFLAGS="$TMP_KRB5_LDFLAGS" ])
96      LIBS="$ac_save_LIBS"
97   fi
98
99   if test -z "$KRB5_LDFLAGS"; then
100      #Try Heimdal
101      TMP_KRB5_LDFLAGS="-L$with_krb5/lib -lgssapi -lkrb5 -lasn1 -lcrypto -lroken -lcrypt"
102      LIBS="$LIBS $TMP_KRB5_LDFLAGS $LIB_resolv"
103      AC_CHECK_LIB(krb5, krb5_init_context, [ KRB5_LDFLAGS="$TMP_KRB5_LDFLAGS" ])
104      LIBS="$ac_save_LIBS"
105   fi
106
107   if test -z "$KRB5_LDFLAGS"; then
108      #Try Heimdal on OpenBSD
109      TMP_KRB5_LDFLAGS="-L$with_krb5/lib -lgssapi -lkrb5 -lasn1 -ldes -lcrypto"
110      LIBS="$LIBS $TMP_KRB5_LDFLAGS $LIB_resolv"
111      AC_CHECK_LIB(krb5, krb5_init_context, [ KRB5_LDFLAGS="$TMP_KRB5_LDFLAGS" ])
112      LIBS="$ac_save_LIBS"
113   fi
114
115   if test -z "$KRB5_LDFLAGS"; then
116      with_krb5=no
117   else
118      with_krb5=yes
119      AC_DEFINE(KRB5)
120
121      # check for Heimdal
122      have_heimdal=""
123      AC_MSG_CHECKING(whether we are using Heimdal)
124      ac_save_CFLAGS="$CFLAGS"
125      CFLAGS="$KRB5_CPPFLAGS"
126      AC_TRY_COMPILE([#include <krb5.h>],
127                     [ char *tmp = heimdal_version; ],
128                     [ AC_MSG_RESULT(yes)
129                       AC_DEFINE(HEIMDAL)
130                       have_heimdal=yes ],
131                     [ AC_MSG_RESULT(no) ])
132      CFLAGS="$ac_save_CFLAGS"
133
134 # If SPNEGO is supported by the gssapi libraries, we shouln't build our support.
135 # SPNEGO is supported as of Heimdal 0.7, don't know about MIT.
136      gssapi_supports_spnego=""
137      AC_MSG_CHECKING(whether the GSSAPI libraries support SPNEGO)
138      # Invent some better test
139      if test "$have_heimdal" = yes; then
140         ac_save_CFLAGS="$CFLAGS"
141         CFLAGS="$KRB5_CPPFLAGS"
142         AC_TRY_COMPILE([#include <gssapi.h>],
143                        [ gss_OID oid = GSS_SPNEGO_MECHANISM; ],
144                        [ AC_MSG_RESULT(yes)
145                          AC_DEFINE(GSSAPI_SUPPORTS_SPNEGO)
146                          gssapi_supports_spnego=yes ],
147                        [ AC_MSG_RESULT(no) ])
148         CFLAGS="$ac_save_CFLAGS"
149      else
150         AC_MSG_RESULT(no)
151      fi
152
153      if test -z "$gssapi_supports_spnego"; then
154         if test -n "$have_heimdal"; then SPNEGO_SRCS="\
155                 spnegokrb5/asn1_MechType.c         \
156                 spnegokrb5/asn1_MechTypeList.c     \
157                 spnegokrb5/asn1_ContextFlags.c     \
158                 spnegokrb5/asn1_NegTokenInit.c     \
159                 spnegokrb5/asn1_NegTokenTarg.c     \
160                 spnegokrb5/init_sec_context.c      \
161                 spnegokrb5/accept_sec_context.c    \
162                 spnegokrb5/encapsulate.c           \
163                 spnegokrb5/decapsulate.c           \
164                 spnegokrb5/external.c"
165         else SPNEGO_SRCS="\
166                 spnegokrb5/asn1_MechType.c         \
167                 spnegokrb5/asn1_MechTypeList.c     \
168                 spnegokrb5/asn1_ContextFlags.c     \
169                 spnegokrb5/asn1_NegTokenInit.c     \
170                 spnegokrb5/asn1_NegTokenTarg.c     \
171                 spnegokrb5/der_get.c               \
172                 spnegokrb5/der_put.c               \
173                 spnegokrb5/der_free.c              \
174                 spnegokrb5/der_length.c            \
175                 spnegokrb5/der_copy.c              \
176                 spnegokrb5/timegm.c                \
177                 spnegokrb5/init_sec_context.c      \
178                 spnegokrb5/accept_sec_context.c    \
179                 spnegokrb5/encapsulate.c           \
180                 spnegokrb5/decapsulate.c           \
181                 spnegokrb5/external.c"
182         fi
183      fi
184   fi
185 fi
186 AC_SUBST(KRB5_CPPFLAGS)
187 AC_SUBST(KRB5_LDFLAGS)
188 AC_SUBST(SPNEGO_SRCS)
189
190 #
191 # Kerberos4 enviroment
192 #
193
194 AC_ARG_WITH(krb4,
195   AC_HELP_STRING([--with-krb4=dir], [use krb4 in dir]),
196   [ with_krb4="$withval" ])
197
198 if test "x$with_krb4" != "xno"; then
199   AC_MSG_CHECKING([for Kerberos4 installation])
200   if test "x$with_krb4" != "x"; then
201      if test -x "$with_krb4/bin/krb4-config"; then
202         KRB4_CPPFLAGS=`$with_krb4/bin/krb4-config --cflags krb4 2>/dev/null`
203         KRB4_LDFLAGS=`$with_krb4/bin/krb4-config --libs krb4 2>/dev/null`
204      elif test -x "$with_krb4/bin/krb5-config"; then
205         KRB4_CPPFLAGS=`$with_krb4/bin/krb5-config --cflags krb4 2>/dev/null`
206         KRB4_LDFLAGS=`$with_krb4/bin/krb5-config --libs krb4 2>/dev/null`
207      else
208         AC_MSG_ERROR([failed to find krb4-config or krb5-config in $with_krb4/bin])
209      fi
210   else
211      KRB4_CPPFLAGS=`krb4-config --cflags krb4 2>/dev/null`
212      KRB4_LDFLAGS=`krb4-config --libs krb4 2>/dev/null`
213      if test "x$KRB4_LDFLAGS" = "x" -a -n "$krb5_config_command"; then
214         KRB4_CPPFLAGS=`$krb5_config_command --cflags krb4 2>/dev/null`
215         KRB4_LDFLAGS=`$krb5_config_command --libs krb4 2>/dev/null`
216         if test $? -ne 0; then
217            KRB4_CPPFLAGS=""
218            KRB4_LDFLAGS=""
219         fi
220      fi
221   fi
222   if test "x$KRB4_LDFLAGS" = "x"; then
223      with_krb4=no
224      AC_MSG_RESULT(no)
225   else
226      AC_MSG_RESULT(yes)
227
228      ac_save_CFLAGS=$CFLAGS
229      ac_save_CPPFLAGS=$CPPFLAGS
230      ac_save_LDFLAGS=$LDFLAGS
231      ac_save_LIBS=$LIBS
232      CFLAGS="$CFLAGS $KRB4_CPPFLAGS"
233      CPPFLAGS="$CFLAGS $KRB4_CPPFLAGS"
234      LDFLAGS="$LDFLAGS $KRB4_LDFLAGS"
235      LIBS="$LIBS $LDFLAGS $LIB_resolv"
236
237 #    if not found krb.h suppose it's in the kerberosIV subdirectory
238      AC_CHECK_HEADER(krb.h, , with_krb4=no)
239      if test "x$with_krb4" = "xno"; then
240          KRB4_CPPFLAGS="$KRB4_CPPFLAGS ${KRB4_CPPFLAGS}/kerberosIV"
241 #        second run of AC_CHECK_HEADER for the same library returns the cached
242 #        result created by previous run :-(
243          AC_CHECK_HEADER(kerberosIV/krb.h, with_krb4=yes,
244                          [  with_krb4=no
245                             KRB4_CPPFLAGS=""
246                             KRB4_LDFLAGS=""])
247      fi
248
249      if test "x$with_krb4" != "xno"; then
250         AC_CHECK_LIB(krb4, krb_get_pw_in_tkt, [], [with_krb4=no])
251         if test "x$with_krb4" = "xno"; then
252            AC_CHECK_LIB(krb, krb_get_pw_in_tkt, [with_krb4=yes], 
253                         [with_krb4=no
254                          KRB4_CPPFLAGS=""
255                          KRB4_LDFLAGS=""])
256         fi
257      fi
258
259      CFLAGS=$ac_save_CFLAGS
260      CPPFLAGS=$ac_save_CPPFLAGS
261      LDFLAGS=$ac_save_LDFLAGS
262      LIBS=$ac_save_LIBS
263
264      AC_DEFINE(KRB4)
265   fi
266 fi
267 AC_SUBST(KRB4_CPPFLAGS)
268 AC_SUBST(KRB4_LDFLAGS)
269
270
271 if test "x$with_krb5" = "xno" -a "x$with_krb4" = "xno"; then
272   AC_MSG_ERROR([No Kerberos enviroment found])
273 fi
274
275 #
276 # Apache enviroment
277 #
278 AC_ARG_WITH(apache,
279   AC_HELP_STRING([--with-apache=dir],[use apache in dir]),
280   [ with_apache="$withval" ])
281
282 AC_PATH_PROG([APXS], [apxs], [], [$with_apache/bin:$with_apache/sbin:$PATH])
283 if test -z "$APXS"; then
284    AC_PATH_PROG([APXS], [apxs2], [], [$with_apache/bin:$with_apache/sbin:$PATH])
285    if test -z "$APXS"; then
286       AC_MSG_ERROR([failed to find apache apxs executable])
287    fi
288 fi
289 AC_SUBST(APXS)
290
291 AC_CONFIG_FILES([Makefile])
292
293 AC_OUTPUT