1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Revision$)
4 test -z "$CFLAGS" && CFLAGS="-g"
5 AC_INIT([Heimdal],[0.7rc1],[heimdal-bugs@pdc.kth.se])
6 AC_CONFIG_SRCDIR([kuser/kinit.c])
7 AC_CONFIG_HEADERS(include/config.h)
9 dnl Checks for programs.
13 AM_INIT_AUTOMAKE([foreign no-dependencies 1.8])
16 AC_PREFIX_DEFAULT(/usr/heimdal)
18 test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc'
19 test "$localstatedir" = '${prefix}/var' && localstatedir='/var/heimdal'
23 AC_SUBST(CANONICAL_HOST)
28 dnl this is needed to run the configure tests against glibc
30 AC_DEFINE([_GNU_SOURCE], 1,
31 [Define to enable extensions on glibc-based systems such as Linux.])
33 if test -f $srcdir/lib/asn1/pkcs12.asn1 ; then
34 AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.])
49 libdir="$libdir$abilibdirext"
56 rk_WFLAGS(-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs)
58 rk_TEST_PACKAGE(openldap,
61 [-lldap -llber],,,OPENLDAP)
63 AC_ARG_ENABLE(hdb-openldap-module,
64 AS_HELP_STRING([--enable-hdb-openldap-module],
65 [if you want support to build openldap hdb as shared object]))
66 if test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes; then
67 AC_DEFINE(OPENLDAP_MODULE, 1, [Define if you want support for hdb ldap module])
69 AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes)
71 rk_TEST_PACKAGE(krb4,[#include <krb.h>],-lkrb,-ldes,/usr/athena, KRB4, krb4-config)
74 if test "$with_krb4" != "no"; then
76 CFLAGS="$CFLAGS $INCLUDE_krb4"
78 LIBS="$LIB_krb4 $LIBS"
81 AC_CACHE_CHECK(for four valued krb_put_int, ac_cv_func_krb_put_int_four,
82 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>]], [[
84 krb_put_int(17, tmp, 4, sizeof(tmp));]])],
85 [ac_cv_func_krb_put_int_four=yes],
86 [ac_cv_func_krb_put_int_four=no])
88 if test "$ac_cv_func_krb_put_int_four" = yes; then
89 AC_DEFINE(HAVE_FOUR_VALUED_KRB_PUT_INT, 1,
90 [define if krb_put_int takes four arguments.])
92 AH_BOTTOM([#if defined(HAVE_FOUR_VALUED_KRB_PUT_INT) || !defined(KRB4)
93 #define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (L), (S))
95 #define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (S))
98 AC_CACHE_CHECK(for KRB_VERIFY_SECURE, ac_cv_func_krb_verify_secure,
99 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>]], [[
100 int x = KRB_VERIFY_SECURE]])],
101 [ac_cv_func_krb_verify_secure=yes],
102 [ac_cv_func_krb_verify_secure=no])
104 if test "$ac_cv_func_krb_verify_secure" != yes; then
105 AC_DEFINE(KRB_VERIFY_SECURE, 1,
106 [Define to one if your krb.h doesn't])
107 AC_DEFINE(KRB_VERIFY_SECURE_FAIL, 2,
108 [Define to two if your krb.h doesn't])
110 AC_CACHE_CHECK(for KRB_VERIFY_NOT_SECURE,
111 ac_cv_func_krb_verify_not_secure,
112 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>]], [[
113 int x = KRB_VERIFY_NOT_SECURE]])],
114 [ac_cv_func_krb_verify_not_secure=yes],
115 [ac_cv_func_krb_verify_not_secure=no])
117 if test "$ac_cv_func_krb_verify_not_secure" != yes; then
118 AC_DEFINE(KRB_VERIFY_NOT_SECURE, 0,
119 [Define to zero if your krb.h doesn't])
121 AC_FIND_FUNC(krb_enable_debug)
122 AC_FIND_FUNC(krb_disable_debug)
123 AC_FIND_FUNC(krb_get_our_ip_for_realm)
124 AC_FIND_FUNC(krb_kdctimeofday)
126 [#ifndef HAVE_KRB_KDCTIMEOFDAY
127 #define krb_kdctimeofday(X) gettimeofday((X), NULL)
129 AC_FIND_FUNC(krb_get_kdc_time_diff)
131 [#ifndef HAVE_KRB_GET_KDC_TIME_DIFF
132 #define krb_get_kdc_time_diff() (0)
134 AC_CACHE_CHECK([for KRB_SENDAUTH_VERS],
135 ac_cv_func_krb_sendauth_vers,
136 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>
137 #include <prot.h>]], [[
138 char *x = KRB_SENDAUTH_VERS]])],
139 [ac_cv_func_krb_sendauth_vers=yes],
140 [ac_cv_func_krb_sendauth_vers=no])
142 if test "$ac_cv_func_krb_sendauth_vers" != yes; then
143 AC_DEFINE(KRB_SENDAUTH_VERS, ["AUTHV0.1"],
144 [This is the krb4 sendauth version.])
146 AC_CACHE_CHECK(for krb_mk_req with const arguments,
147 ac_cv_func_krb_mk_req_const,
148 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>
149 int krb_mk_req(KTEXT a, const char *s, const char *i,
150 const char *r, int32_t checksum)
151 { return 17; }]], [[]])],
152 [ac_cv_func_krb_mk_req_const=yes],
153 [ac_cv_func_krb_mk_req_const=no])
155 if test "$ac_cv_func_krb_mk_req_const" = "yes"; then
156 AC_DEFINE(KRB_MK_REQ_CONST, 1,
157 [Define if krb_mk_req takes const char *])
161 CFLAGS="$save_CFLAGS"
162 LIB_kdb="-lkdb -lkrb"
164 AM_CONDITIONAL(KRB4, test "$with_krb4" != "no")
165 AM_CONDITIONAL(KRB5, true)
166 AM_CONDITIONAL(do_roken_rename, true)
168 AC_DEFINE(KRB5, 1, [Enable Kerberos 5 support in applications.])dnl
176 AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
177 if test "$enable_dce" = yes; then
178 AC_DEFINE(DCE, 1, [Define if you want support for DCE/DFS PAG's.])
180 AM_CONDITIONAL(DCE, test "$enable_dce" = yes)
182 ## XXX quite horrible:
183 if test -f /etc/ibmcxx.cfg; then
184 dpagaix_ldadd=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/libraries/{;s/^[[^=]]*=\(.*\)/\1/;s/,/ /gp;}'`
185 dpagaix_cflags=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/options/{;s/^[[^=]]*=\(.*\)/\1/;s/-q[^,]*//;s/,/ /gp;}'`
188 dpagaix_cflags="-D_THREAD_SAFE -D_AIX_PTHREADS_D7 -D_AIX32_THREADS=1 -D_AES_SOURCE -D_AIX41 -I/usr/include/dce"
189 dpagaix_ldadd="-L/usr/lib/threads -ldcelibc_r -ldcepthreads -lpthreads_compat lpthreads -lc_r"
190 dpagaix_ldflags="-Wl,-bI:dfspag.exp"
192 AC_SUBST(dpagaix_cflags)
193 AC_SUBST(dpagaix_ldadd)
194 AC_SUBST(dpagaix_ldflags)
198 dnl AC_ROKEN(10,[/usr/heimdal /usr/athena],[lib/roken],[$(top_builddir)/lib/roken/libroken.la],[-I$(top_builddir)/lib/roken -I$(top_srcdir)/lib/roken])
201 LIB_roken="\$(top_builddir)/lib/vers/libvers.la $LIB_roken"
208 AS_HELP_STRING([--disable-mmap],[disable use of mmap]))
209 if test "$enable_mmap" = "no"; then
210 AC_DEFINE(NO_MMAP, 1, [Define if you don't want to use mmap.])
215 rk_TEST_PACKAGE(readline,
217 #include <readline.h>],-lreadline,,, READLINE)
219 rk_TEST_PACKAGE(hesiod,[#include <hesiod.h>],-lhesiod,,, HESIOD)
230 AM_CONDITIONAL(HAVE_X, test "$no_x" != yes)
236 dnl Checks for typedefs, structures, and compiler characteristics.
239 AC_CHECK_TYPE_EXTRA(mode_t, unsigned short, [])
240 AC_CHECK_TYPE_EXTRA(sig_atomic_t, int, [#include <signal.h>])
241 AC_HAVE_TYPE([long long])
245 dnl Checks for header files.
262 netinet/in6_machtypes.h \
299 dnl On Solaris 8 there's a compilation warning for term.h because
300 dnl it doesn't define `bool'.
301 AC_CHECK_HEADERS(term.h, , , -)
303 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
304 #if HAVE_SYS_SOCKET_H
305 #include <sys/socket.h>
308 AC_CHECK_HEADERS(sys/ptyvar.h, , , [AC_INCLUDES_DEFAULT
313 AC_CHECK_HEADERS(sys/strtty.h, , , [AC_INCLUDES_DEFAULT
317 #if HAVE_SYS_STREAM_H
318 #include <sys/stream.h>
321 AC_CHECK_HEADERS(security/pam_modules.h, , , [AC_INCLUDES_DEFAULT
322 #include <security/pam_appl.h>
325 AC_ARG_ENABLE(netinfo,
326 AS_HELP_STRING([--enable-netinfo],[enable netinfo for configuration lookup]))
328 if test "$ac_cv_header_netinfo_ni_h" = yes -a "$enable_netinfo" = yes; then
329 AC_DEFINE(HAVE_NETINFO, 1,
330 [Define if you want to use Netinfo instead of krb5.conf.])
334 AC_HELP_STRING([--enable-kcm],[enable Kerberos Credentials Manager]))
336 if test "$ac_cv_header_sys_un_h" = yes -a "$enable_kcm" = yes; then
337 AC_DEFINE(HAVE_KCM, 1,
338 [Define if you want to use the Kerberos Credentials Manager.])
340 AM_CONDITIONAL(KCM, test "$enable_kcm" = yes)
343 rk_WIN32_EXPORT(BUILD_KRB5_LIB, KRB5_LIB_FUNCTION)
344 rk_WIN32_EXPORT(BUILD_ROKEN_LIB, ROKEN_LIB_FUNCTION)
346 dnl Checks for libraries.
348 AC_FIND_FUNC_NO_LIBS(logwtmp, util)
349 AC_FIND_FUNC_NO_LIBS(logout, util)
350 AC_FIND_FUNC_NO_LIBS(openpty, util)
351 AC_FIND_FUNC_NO_LIBS(tgetent, termcap ncurses curses)
353 dnl Checks for library functions.
385 yp_get_default_domain \
392 AC_CHECK_GETPWNAM_R_POSIX
394 dnl detect doors on solaris
395 if test "$enable_pthread_support" != no; then
397 LIBS="$LIBS $PTHREADS_LIBS"
398 AC_FIND_FUNC_NO_LIBS(door_create, door)
403 AC_CHECK_FUNCS(getudbnam setlim)
405 dnl AC_KRB_FUNC_GETCWD_BROKEN
408 dnl Check for fields in struct utmp
411 AC_HAVE_STRUCT_FIELD(struct utmp, ut_addr, [#include <utmp.h>])
412 AC_HAVE_STRUCT_FIELD(struct utmp, ut_host, [#include <utmp.h>])
413 AC_HAVE_STRUCT_FIELD(struct utmp, ut_id, [#include <utmp.h>])
414 AC_HAVE_STRUCT_FIELD(struct utmp, ut_pid, [#include <utmp.h>])
415 AC_HAVE_STRUCT_FIELD(struct utmp, ut_type, [#include <utmp.h>])
416 AC_HAVE_STRUCT_FIELD(struct utmp, ut_user, [#include <utmp.h>])
417 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_exit, [#include <utmpx.h>])
418 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_syslen, [#include <utmpx.h>])
420 AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t,
421 u_int8_t, u_int16_t, u_int32_t, u_int64_t,
422 uint8_t, uint16_t, uint32_t, uint64_t],,,[
423 #ifdef HAVE_INTTYPES_H
424 #include <inttypes.h>
426 #ifdef HAVE_SYS_TYPES_H
427 #include <sys/types.h>
429 #ifdef HAVE_SYS_BITYPES_H
430 #include <sys/bitypes.h>
432 #ifdef HAVE_BIND_BITYPES_H
433 #include <bind/bitypes.h>
435 #ifdef HAVE_NETINET_IN6_MACHTYPES_H
436 #include <netinet/in6_machtypes.h>
444 dnl Some operating systems already have com_err and compile_et
447 rk_AUTH_MODULES([sia afskauthlib])
451 AH_BOTTOM([#ifdef ROKEN_RENAME
452 #include "roken_rename.h"
455 AC_CONFIG_FILES(Makefile \
457 include/kadm5/Makefile \
461 lib/auth/afskauthlib/Makefile \
462 lib/auth/pam/Makefile \
463 lib/auth/sia/Makefile \
465 lib/com_err/Makefile \
467 lib/editline/Makefile \
468 lib/gssapi/Makefile \
485 appl/afsutil/Makefile \
487 appl/ftp/common/Makefile \
488 appl/ftp/ftp/Makefile \
489 appl/ftp/ftpd/Makefile \
491 appl/login/Makefile \
493 appl/popper/Makefile \
498 appl/xnlock/Makefile \
499 appl/telnet/Makefile \
500 appl/telnet/libtelnet/Makefile \
501 appl/telnet/telnet/Makefile \
502 appl/telnet/telnetd/Makefile \
505 appl/dceutils/Makefile \
513 dnl This is the release version name-number[beta]
516 cat > include/newversion.h.in <<EOF
517 const char *heimdal_long_version = "@([#])\$Version: $PACKAGE_STRING by @USER@ on @HOST@ ($host) @DATE@ \$";
518 const char *heimdal_version = "AC_PACKAGE_STRING";
521 if test -f include/version.h && cmp -s include/newversion.h.in include/version.h.in; then
522 echo "include/version.h is unchanged"
523 rm -f include/newversion.h.in
525 echo "creating include/version.h"
526 User=${USER-${LOGNAME}}
527 Host=`(hostname || uname -n || echo unknown) 2>/dev/null | sed 1q`
529 mv -f include/newversion.h.in include/version.h.in
530 sed -e "s/@USER@/$User/" -e "s/@HOST@/$Host/" -e "s/@DATE@/$Date/" include/version.h.in > include/version.h