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],[1.0.99],[heimdal-bugs@h5l.se])
6 AC_CONFIG_SRCDIR([kuser/kinit.c])
7 AC_CONFIG_HEADERS(include/config.h)
9 AM_INIT_AUTOMAKE([foreign no-dependencies 1.8])
12 dnl Checks for programs.
17 AC_PREFIX_DEFAULT(/usr/heimdal)
19 test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc'
20 test "$localstatedir" = '${prefix}/var' && localstatedir='/var/heimdal'
24 AC_SUBST(CANONICAL_HOST)
26 dnl Hints for autobuild
32 dnl this is needed to run the configure tests against glibc
34 AC_DEFINE([_GNU_SOURCE], 1,
35 [Define to enable extensions on glibc-based systems such as Linux.])
49 libdir="$libdir$abilibdirext"
55 AM_CONDITIONAL(ENABLE_SHARED, test "$enable_shared" = "yes")
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 AC_ARG_ENABLE(pk-init,
72 AS_HELP_STRING([--disable-pk-init],
73 [if you want disable to PK-INIT support]))
74 if test "$enable_pk_init" != no ;then
75 AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.])
77 AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no)
80 dnl path where the hdb directory is stored
82 [AC_HELP_STRING([--with-hdbdir],
83 [Default location for KDC database @<:@default=/var/heimdal@:>@])],
85 [with_hdbdir=/var/heimdal])
86 DIR_hdbdir="$with_hdbdir"
87 AC_SUBST([DIR_hdbdir])
90 dnl no kerberos4 any more
92 AC_SUBST(INCLUDE_krb4)
94 AM_CONDITIONAL(KRB4, false)
96 AM_CONDITIONAL(KRB5, true)
97 AM_CONDITIONAL(do_roken_rename, true)
99 AC_DEFINE(KRB5, 1, [Enable Kerberos 5 support in applications.])dnl
107 AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
108 if test "$enable_dce" = yes; then
109 AC_DEFINE(DCE, 1, [Define if you want support for DCE/DFS PAG's.])
111 AM_CONDITIONAL(DCE, test "$enable_dce" = yes)
113 ## XXX quite horrible:
114 if test -f /etc/ibmcxx.cfg; then
115 dpagaix_ldadd=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/libraries/{;s/^[[^=]]*=\(.*\)/\1/;s/,/ /gp;}'`
116 dpagaix_cflags=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/options/{;s/^[[^=]]*=\(.*\)/\1/;s/-q[^,]*//;s/,/ /gp;}'`
119 dpagaix_cflags="-D_THREAD_SAFE -D_AIX_PTHREADS_D7 -D_AIX32_THREADS=1 -D_AES_SOURCE -D_AIX41 -I/usr/include/dce"
120 dpagaix_ldadd="-L/usr/lib/threads -ldcelibc_r -ldcepthreads -lpthreads_compat lpthreads -lc_r"
121 dpagaix_ldflags="-Wl,-bI:dfspag.exp"
123 AC_SUBST(dpagaix_cflags)
124 AC_SUBST(dpagaix_ldadd)
125 AC_SUBST(dpagaix_ldflags)
127 AC_ARG_ENABLE([afs-support],
128 AC_HELP_STRING([--disable-afs-support],
129 [if you don't want support for AFS]))
130 if test "$enable_afs_support" = no; then
131 AC_DEFINE(NO_AFS, 1, [Define if you don't wan't support for AFS.])
136 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])
139 LIBADD_roken="$LIB_roken"
140 AC_SUBST(LIBADD_roken)dnl
141 LIB_roken="\$(top_builddir)/lib/vers/libvers.la $LIB_roken"
148 AS_HELP_STRING([--disable-mmap],[disable use of mmap]))
149 if test "$enable_mmap" = "no"; then
150 AC_DEFINE(NO_MMAP, 1, [Define if you don't want to use mmap.])
153 AC_ARG_ENABLE(afs-string-to-key,
154 AS_HELP_STRING([--disable-afs-string-to-key],
155 [disable use of weak AFS string-to-key functions]),
156 [], [enable_afs_string_to_key=yes])
158 if test "$enable_afs_string_to_key" = "yes"; then
159 AC_DEFINE(ENABLE_AFS_STRING_TO_KEY, 1, [Define if want to use the weak AFS string to key functions.])
165 rk_TEST_PACKAGE(readline,
167 #include <readline.h>],-lreadline,,, READLINE)
169 rk_TEST_PACKAGE(hesiod,[#include <hesiod.h>],-lhesiod,,, HESIOD)
180 AM_CONDITIONAL(HAVE_X, test "$no_x" != yes)
186 dnl Checks for typedefs, structures, and compiler characteristics.
189 AC_CHECK_TYPE_EXTRA(mode_t, unsigned short, [])
190 AC_CHECK_TYPE_EXTRA(sig_atomic_t, int, [#include <signal.h>])
191 AC_HAVE_TYPE([long long])
195 dnl Checks for header files.
212 netinet/in6_machtypes.h \
253 dnl On Solaris 8 there's a compilation warning for term.h because
254 dnl it doesn't define `bool'.
255 AC_CHECK_HEADERS(term.h, , , -)
257 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
258 #if HAVE_SYS_SOCKET_H
259 #include <sys/socket.h>
262 AC_CHECK_HEADERS(sys/ptyvar.h, , , [AC_INCLUDES_DEFAULT
267 AC_CHECK_HEADERS(sys/strtty.h, , , [AC_INCLUDES_DEFAULT
271 #if HAVE_SYS_STREAM_H
272 #include <sys/stream.h>
275 AC_CHECK_HEADERS(sys/ucred.h, , , [AC_INCLUDES_DEFAULT
277 #include <sys/types.h>
280 #include <sys/param.h>
283 AC_CHECK_HEADERS(security/pam_modules.h, , , [AC_INCLUDES_DEFAULT
284 #include <security/pam_appl.h>
287 AC_ARG_ENABLE(netinfo,
288 AS_HELP_STRING([--enable-netinfo],[enable netinfo for configuration lookup]))
290 if test "$ac_cv_header_netinfo_ni_h" = yes -a "$enable_netinfo" = yes; then
291 AC_DEFINE(HAVE_NETINFO, 1,
292 [Define if you want to use Netinfo instead of krb5.conf.])
296 rk_WIN32_EXPORT(BUILD_KRB5_LIB, KRB5_LIB_FUNCTION)
297 rk_WIN32_EXPORT(BUILD_ROKEN_LIB, ROKEN_LIB_FUNCTION)
299 dnl Checks for libraries.
301 AC_FIND_FUNC_NO_LIBS(logwtmp, util,[
306 AC_FIND_FUNC_NO_LIBS(logout, util,[
311 AC_FIND_FUNC_NO_LIBS(openpty, util,[
317 AC_FIND_FUNC_NO_LIBS(tgetent, termcap ncurses curses,[
318 #ifdef HAVE_TERMCAP_H
326 dnl Checks for library functions.
358 yp_get_default_domain \
365 AC_CHECK_GETPWNAM_R_POSIX
367 dnl detect doors on solaris
368 if test "$enable_pthread_support" != no; then
370 LIBS="$LIBS $PTHREADS_LIBS"
371 AC_FIND_FUNC_NO_LIBS(door_create, door)
376 AS_HELP_STRING([--enable-kcm],[enable Kerberos Credentials Manager]),
379 if test "$enable_kcm" = yes ; then
380 if test "$ac_cv_header_sys_un_h" != yes -a "$ac_cv_funclib_door_create" != yes ; then
384 if test "$enable_kcm" = yes; then
385 AC_DEFINE(HAVE_KCM, 1,
386 [Define if you want to use the Kerberos Credentials Manager.])
388 AM_CONDITIONAL(KCM, test "$enable_kcm" = yes)
393 AC_CHECK_FUNCS(getudbnam setlim)
395 dnl AC_KRB_FUNC_GETCWD_BROKEN
398 dnl Check for fields in struct utmp
401 AC_HAVE_STRUCT_FIELD(struct utmp, ut_addr, [#include <utmp.h>])
402 AC_HAVE_STRUCT_FIELD(struct utmp, ut_host, [#include <utmp.h>])
403 AC_HAVE_STRUCT_FIELD(struct utmp, ut_id, [#include <utmp.h>])
404 AC_HAVE_STRUCT_FIELD(struct utmp, ut_pid, [#include <utmp.h>])
405 AC_HAVE_STRUCT_FIELD(struct utmp, ut_type, [#include <utmp.h>])
406 AC_HAVE_STRUCT_FIELD(struct utmp, ut_user, [#include <utmp.h>])
407 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_exit, [#include <utmpx.h>])
408 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_syslen, [#include <utmpx.h>])
410 AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t,
411 u_int8_t, u_int16_t, u_int32_t, u_int64_t,
412 uint8_t, uint16_t, uint32_t, uint64_t],,,[
413 #ifdef HAVE_INTTYPES_H
414 #include <inttypes.h>
416 #ifdef HAVE_SYS_TYPES_H
417 #include <sys/types.h>
419 #ifdef HAVE_SYS_BITYPES_H
420 #include <sys/bitypes.h>
422 #ifdef HAVE_BIND_BITYPES_H
423 #include <bind/bitypes.h>
425 #ifdef HAVE_NETINET_IN6_MACHTYPES_H
426 #include <netinet/in6_machtypes.h>
430 rk_FRAMEWORK_SECURITY
436 dnl Some operating systems already have com_err and compile_et
439 rk_AUTH_MODULES([sia afskauthlib])
443 rk_WFLAGS([-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs])
446 AH_BOTTOM([#ifdef ROKEN_RENAME
447 #include "roken_rename.h"
450 AC_CONFIG_FILES(Makefile \
453 include/gssapi/Makefile \
454 include/hcrypto/Makefile \
455 include/kadm5/Makefile \
459 lib/auth/afskauthlib/Makefile \
460 lib/auth/pam/Makefile \
461 lib/auth/sia/Makefile \
463 lib/com_err/Makefile \
464 lib/hcrypto/Makefile \
465 lib/editline/Makefile \
467 lib/gssapi/Makefile \
485 appl/afsutil/Makefile \
487 appl/ftp/common/Makefile \
488 appl/ftp/ftp/Makefile \
489 appl/ftp/ftpd/Makefile \
490 appl/gssmask/Makefile \
492 appl/login/Makefile \
494 appl/popper/Makefile \
499 appl/xnlock/Makefile \
500 appl/telnet/Makefile \
501 appl/telnet/libtelnet/Makefile \
502 appl/telnet/telnet/Makefile \
503 appl/telnet/telnetd/Makefile \
506 appl/dceutils/Makefile \
511 tests/ldap/Makefile \
513 tests/java/Makefile \
514 tests/plugin/Makefile \
516 packages/mac/Makefile \
517 packages/debian/Makefile \
525 dnl This is the release version name-number[beta]
528 cat > include/newversion.h.in <<EOF
529 const char *heimdal_long_version = "@([#])\$Version: $PACKAGE_STRING by @USER@ on @HOST@ ($host) @DATE@ \$";
530 const char *heimdal_version = "AC_PACKAGE_STRING";
533 if test -f include/version.h && cmp -s include/newversion.h.in include/version.h.in; then
534 echo "include/version.h is unchanged"
535 rm -f include/newversion.h.in
537 echo "creating include/version.h"
538 User=${USER-${LOGNAME}}
539 Host=`(hostname || uname -n || echo unknown) 2>/dev/null | sed 1q`
541 mv -f include/newversion.h.in include/version.h.in
542 sed -e "s/@USER@/$User/" -e "s/@HOST@/$Host/" -e "s/@DATE@/$Date/" include/version.h.in > include/version.h