Merge pull request #203 from sdigit/patch-1
[heimdal.git] / configure.ac
blob5f2e7fd8679249fc07b5989b1905d2a8971f6960
1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Revision$)
3 AC_PREREQ(2.62)
4 test -z "$CFLAGS" && CFLAGS="-g"
5 AC_INIT([Heimdal],[1.6.99],[heimdal-bugs@h5l.org])
6 AC_CONFIG_SRCDIR([kuser/kinit.c])
7 AC_CONFIG_HEADERS(include/config.h)
8 AC_CONFIG_MACRO_DIR([cf])
10 AM_INIT_AUTOMAKE([foreign 1.11])
11 AM_MAINTAINER_MODE
13 LT_PREREQ([2.2])
14 LT_INIT([shared static win32-dll])
17 dnl Checks for programs.
18 AC_PROG_CC
19 AM_PROG_CC_C_O
20 AC_PROG_CPP
22 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
24 AC_PREFIX_DEFAULT(/usr/heimdal)
26 test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc'
27 test "$localstatedir" = '${prefix}/var' && localstatedir='/var/heimdal'
29 AC_CANONICAL_HOST
30 CANONICAL_HOST=$host
31 AC_SUBST(CANONICAL_HOST)
33 rk_SYS_LARGEFILE
35 rk_AIX
36 rk_IRIX
37 rk_SUNOS
39 dnl
40 dnl this is needed to run the configure tests against glibc
41 dnl
42 AC_DEFINE([_GNU_SOURCE], 1,
43         [Define to enable extensions on glibc-based systems such as Linux.])
45 AC_OBJEXT
46 AC_EXEEXT
48 dnl AC_KRB_PROG_YACC
49 AC_PROG_YACC
50 AM_PROG_LEX
51 dnl AC_PROG_RANLIB
52 AC_PROG_AWK
53 AC_KRB_PROG_LN_S
55 AC_MIPS_ABI
56 CC="$CC $abi"
57 libdir="$libdir$abilibdirext"
59 AC_C___ATTRIBUTE__
61 AM_CONDITIONAL(ENABLE_SHARED, test "$enable_shared" = "yes")
62 rk_VERSIONSCRIPT
64 dnl
65 dnl Helper bits for cross compiling
66 dnl
70 AM_CONDITIONAL(CROSS_COMPILE, test "${cross_compiling}" = yes)
72 AC_ARG_WITH(cross-tools,
73         AS_HELP_STRING([--with-cross-tools=dir], [use cross tools in dir]),
74         [if test "$withval" = "yes"; then
75                 AC_MSG_ERROR([Need path to cross tools])
76         fi
77         with_cross_tools="${with_cross_tools}/"
78         ])
80 if test "${cross_compiling}" != yes ; then
82    ASN1_COMPILE="\$(top_builddir)/lib/asn1/asn1_compile\$(EXEEXT)"
83    SLC="\$(top_builddir)/lib/sl/slc"
85    ASN1_COMPILE_DEP="\$(ASN1_COMPILE)"
86    SLC_DEP="\$(SLC)"
87 else
88    ASN1_COMPILE="${with_cross_tools}asn1_compile"
89    SLC="${with_cross_tools}slc"
91    ASN1_COMPILE_DEP=
92    SLC_DEP=
94    ac_cv_prog_COMPILE_ET=${with_cross_tools}compile_et
98 AC_SUBST([ASN1_COMPILE])
99 AC_SUBST([ASN1_COMPILE_DEP])
100 AC_SUBST([SLC])
101 AC_SUBST([SLC_DEP])
104 dnl ---
106 AC_DEFINE(HEIM_WEAK_CRYPTO, 1, [Define if you want support for weak crypto])
108 rk_TEST_PACKAGE(openldap,
109 [#include <lber.h>
110 #include <ldap.h>],
111 [-lldap -llber],,,OPENLDAP)
113 AC_ARG_ENABLE(hdb-openldap-module, 
114         AS_HELP_STRING([--enable-hdb-openldap-module],
115                 [if you want support to build openldap hdb as shared object]))
116 if test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes; then
117     AC_DEFINE(OPENLDAP_MODULE, 1, [Define if you want support for hdb ldap module])
119 AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes)
122 dnl Optional modules, pk-init, digest, kx509
125 AC_ARG_ENABLE(pk-init, 
126         AS_HELP_STRING([--disable-pk-init],
127                 [if you want disable to PK-INIT support]))
128 if test "$enable_pk_init" != no ;then
129         AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.])
131 AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no)
133 AC_ARG_ENABLE(digest, 
134         AS_HELP_STRING([--disable-digest],
135                 [if you want disable to DIGEST support]))
136 if test "$enable_digest" != no ;then
137         AC_DEFINE([DIGEST], 1, [Define to enable DIGEST.])
140 AC_ARG_ENABLE(kx509, 
141         AS_HELP_STRING([--disable-kx509],
142                 [if you want disable to kx509 support]))
143 if test "$enable_kx509" != no ;then
144         AC_DEFINE([KX509], 1, [Define to enable kx509.])
147 dnl Need to test if pkg-config exists
148 PKG_PROG_PKG_CONFIG
150 dnl libcap-ng
151 AC_ARG_WITH([capng],
152   AC_HELP_STRING([--with-capng], [use libcap-ng to drop KDC privileges @<:@default=check@:>@]),
153   [],
154   [with_capng=check])
155 if test "$with_capng" != "no"; then
156   PKG_CHECK_MODULES([CAPNG], [libcap-ng >= 0.4.0],
157                     [with_capng=yes],[with_capng=no])
159 if test "$with_capng" = "yes"; then
160   AC_DEFINE_UNQUOTED([HAVE_CAPNG], 1, [whether capng is available for privilege reduction])
162 AM_CONDITIONAL([HAVE_CAPNG], [test "$with_capng" != "no"])
163 AC_SUBST([CAPNG_CFLAGS])
164 AC_SUBST([CAPNG_LIBS])
166 dnl Check for sqlite
167 rk_TEST_PACKAGE(sqlite3,
168 [#include <sqlite3.h>
169 #ifndef SQLITE_OPEN_CREATE
170 #error "old version"
171 #endif],
172 [-lsqlite3],,,SQLITE3)
174 if test "X$with_sqlite3" != Xyes ; then
175    INCLUDE_sqlite3="-I\$(top_srcdir)/lib/sqlite"
176    LIB_sqlite3="\$(top_builddir)/lib/sqlite/libheimsqlite.la"
178 AM_CONDITIONAL(SQLITE3,  test "X$with_sqlite3" = Xyes)
180 AC_DEFINE(HAVE_SQLITE3, 1, [Define if you want support for sqlite in Heimdal.])
182 AC_ARG_ENABLE(sqlite-cache, 
183         AS_HELP_STRING([--disable-sqlite-cache],[if you want support for cache in sqlite]))
184 if test "$enable_sqlite_cache" != no; then
185     AC_DEFINE(HAVE_SCC, 1, [Define if you want support for cache in sqlite.])
187 AM_CONDITIONAL(have_scc, test "$enable_sqlite_cache" != no)
190 dnl check for libintl
191 rk_TEST_PACKAGE(libintl,
192 [#include <libintl.h>],
193 [-lintl],,,LIBINTL)
195 dnl path where the hdb directory is stored
196 AC_ARG_WITH([hdbdir], 
197         [AS_HELP_STRING([--with-hdbdir],[Default location for KDC database @<:@default=/var/heimdal@:>@])],
198         [],
199         [with_hdbdir=/var/heimdal])
200 DIR_hdbdir="$with_hdbdir"
201 AC_SUBST([DIR_hdbdir])
204 AM_CONDITIONAL(KRB5, true)
205 AM_CONDITIONAL(do_roken_rename, true)
207 AC_DEFINE(SUPPORT_INETD, 1, [Enable use of inetd style startup.])dnl
210 AC_DEFINE(KRB5, 1, [Enable Kerberos 5 support in applications.])dnl
211 AC_SUBST(LIB_kdb)dnl
213 KRB_CRYPTO
215 KRB_PTHREADS
217 AC_ARG_ENABLE(dce, 
218         AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
219 if test "$enable_dce" = yes; then
220     AC_DEFINE(DCE, 1, [Define if you want support for DCE/DFS PAG's.])
222 AM_CONDITIONAL(DCE, test "$enable_dce" = yes)
224 ## XXX quite horrible:
225 if test -f /etc/ibmcxx.cfg; then
226         dpagaix_ldadd=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/libraries/{;s/^[[^=]]*=\(.*\)/\1/;s/,/ /gp;}'`
227         dpagaix_cflags=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/options/{;s/^[[^=]]*=\(.*\)/\1/;s/-q[^,]*//;s/,/ /gp;}'`
228         dpagaix_ldflags=
229 else
230         dpagaix_cflags="-D_THREAD_SAFE -D_AIX_PTHREADS_D7 -D_AIX32_THREADS=1 -D_AES_SOURCE -D_AIX41 -I/usr/include/dce"
231         dpagaix_ldadd="-L/usr/lib/threads -ldcelibc_r -ldcepthreads -lpthreads_compat lpthreads -lc_r"
232         dpagaix_ldflags="-Wl,-bI:dfspag.exp"
234 AC_SUBST(dpagaix_cflags)
235 AC_SUBST(dpagaix_ldadd)
236 AC_SUBST(dpagaix_ldflags)
238 AC_ARG_ENABLE([afs-support],
239         AS_HELP_STRING([--disable-afs-support],[if you don't want support for AFS]))
240 if test "$enable_afs_support" = no; then
241         AC_DEFINE(NO_AFS, 1, [Define if you don't wan't support for AFS.])
242         NO_AFS="1"
244 AC_SUBST(NO_AFS)dnl
245 AM_CONDITIONAL(NO_AFS, test "$enable_afs_support" = no)
247 rk_DB
249 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])
251 rk_ROKEN(lib/roken)
252 LIBADD_roken="$LIB_roken"
253 AC_SUBST(LIBADD_roken)dnl
254 LIB_roken="\$(top_builddir)/lib/vers/libvers.la $LIB_roken"
256 rk_OTP
258 rk_LIBDISPATCH
260 AC_CHECK_OSFC2
262 AC_ARG_ENABLE(mmap,
263         AS_HELP_STRING([--disable-mmap],[disable use of mmap]))
264 if test "$enable_mmap" = "no"; then
265         AC_DEFINE(NO_MMAP, 1, [Define if you don't want to use mmap.])
268 AC_ARG_ENABLE(afs-string-to-key,
269         AS_HELP_STRING([--disable-afs-string-to-key],
270         [disable use of weak AFS string-to-key functions]),
271         [], [enable_afs_string_to_key=yes])
273 if test "$enable_afs_string_to_key" = "yes"; then
274         AC_DEFINE(ENABLE_AFS_STRING_TO_KEY, 1, [Define if want to use the weak AFS string to key functions.])
278 rk_CHECK_MAN
280 rk_TEST_PACKAGE(readline,
281 [#include <stdio.h>
282 #if defined(HAVE_READLINE_READLINE_H)
283 #include <readline/readline.h>
284 #elif defined(HAVE_READLINE_H)
285 #include <readline.h>
286 #endif
287 ],-lreadline,,, READLINE,, [readline.h readline/readline.h])
289 rk_TEST_PACKAGE(libedit,
290 [#include <stdio.h>
291 #if defined(HAVE_READLINE_READLINE_H)
292 #include <readline/readline.h>
293 #elif defined(HAVE_READLINE_H)
294 #include <readline.h>
295 #endif
296 ],-ledit,,, READLINE,, [readline.h readline/readline.h])
298 AC_CONFIG_SUBDIRS([lib/libedit])
300 rk_TEST_PACKAGE(hesiod,[#include <hesiod.h>],-lhesiod,,, HESIOD)
302 KRB_C_BIGENDIAN
303 AC_C_INLINE
305 KRB_CHECK_X
307 AM_CONDITIONAL(HAVE_X, test "$no_x" != yes)
309 AC_CHECK_XAU
311 dnl AM_C_PROTOTYPES
313 dnl Checks for typedefs, structures, and compiler characteristics.
314 AC_C_CONST
315 AC_TYPE_OFF_T
316 AC_CHECK_TYPE_EXTRA(mode_t, unsigned short, [])
317 AC_CHECK_TYPE_EXTRA(sig_atomic_t, int, [#include <signal.h>])
318 AC_HAVE_TYPE([long long])
319 AC_HEADER_TIME
320 AC_STRUCT_TM
322 dnl Checks for header files.
323 AC_HEADER_STDC
325 AC_CHECK_HEADERS([\
326         CommonCrypto/CommonDigest.h             \
327         CommonCrypto/CommonCryptor.h            \
328         arpa/ftp.h                              \
329         arpa/telnet.h                           \
330         bind/bitypes.h                          \
331         bsdsetjmp.h                             \
332         curses.h                                \
333         dlfcn.h                                 \
334         execinfo.h                              \
335         fnmatch.h                               \
336         inttypes.h                              \
337         io.h                                    \
338         libutil.h                               \
339         limits.h                                \
340         maillock.h                              \
341         netgroup.h                              \
342         netinet/in6_machtypes.h                 \
343         pthread.h                               \
344         pty.h                                   \
345         sac.h                                   \
346         sgtty.h                                 \
347         siad.h                                  \
348         signal.h                                \
349         strings.h                               \
350         stropts.h                               \
351         sys/bitypes.h                           \
352         sys/category.h                          \
353         sys/file.h                              \
354         sys/filio.h                             \
355         sys/ioccom.h                            \
356         sys/mman.h                              \
357         sys/param.h                             \
358         sys/pty.h                               \
359         sys/ptyio.h                             \
360         sys/select.h                            \
361         sys/socket.h                            \
362         sys/str_tty.h                           \
363         sys/stream.h                            \
364         sys/stropts.h                           \
365         sys/syscall.h                           \
366         sys/termio.h                            \
367         sys/timeb.h                             \
368         sys/times.h                             \
369         sys/types.h                             \
370         sys/un.h                                \
371         locale.h                                \
372         termcap.h                               \
373         termio.h                                \
374         termios.h                               \
375         time.h                                  \
376         tmpdir.h                                \
377         udb.h                                   \
378         util.h                                  \
379         utmp.h                                  \
380         utmpx.h                                 \
383 dnl On Solaris 8 there's a compilation warning for term.h because
384 dnl it doesn't define `bool'.
385 AC_CHECK_HEADERS(term.h, , , -)
387 dnl aix have asl.h (A/IX screen library) that we don't want
388 AC_CHECK_HEADERS(asl.h, , , [
389 #include <asl.h>
390 #ifndef ASL_STRING_EMERG
391 #error ASL_STRING_EMERG missing
392 #endif])
394 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
395 #if HAVE_SYS_SOCKET_H
396 #include <sys/socket.h>
397 #endif])
399 AC_CHECK_HEADERS(sys/ptyvar.h, , , [AC_INCLUDES_DEFAULT
400 #if HAVE_SYS_TTY_H
401 #include <sys/tty.h>
402 #endif])
404 AC_CHECK_HEADERS(sys/strtty.h, , , [AC_INCLUDES_DEFAULT
405 #if HAVE_TERMIOS_H
406 #include <termios.h>
407 #endif
408 #if HAVE_SYS_STREAM_H
409 #include <sys/stream.h>
410 #endif])
412 AC_CHECK_HEADERS(sys/ucred.h, , , [AC_INCLUDES_DEFAULT
413 #if HAVE_SYS_TYPES_H
414 #include <sys/types.h>
415 #endif
416 #if HAVE_SYS_PARAM_H
417 #include <sys/param.h>
418 #endif])
420 AC_CHECK_HEADERS(security/pam_modules.h, , , [AC_INCLUDES_DEFAULT
421 #include <security/pam_appl.h>
424 dnl export symbols
425 rk_WIN32_EXPORT(BUILD_KRB5_LIB, KRB5_LIB)
426 rk_WIN32_EXPORT(BUILD_ROKEN_LIB, ROKEN_LIB)
427 rk_WIN32_EXPORT(BUILD_GSSAPI_LIB, GSSAPI_LIB)
429 dnl Checks for libraries.
431 AC_FIND_FUNC_NO_LIBS(logwtmp, util,[
432 #ifdef HAVE_UTIL_H
433 #include <util.h>
434 #endif
435 ],[0,0,0])
436 AC_FIND_FUNC_NO_LIBS(logout, util,[
437 #ifdef HAVE_UTIL_H
438 #include <util.h>
439 #endif
440 ],[0])
441 AC_FIND_FUNC_NO_LIBS(openpty, util,[
442 #ifdef HAVE_UTIL_H
443 #include <util.h>
444 #endif
445 ],[0,0,0,0,0])
447 AC_FIND_FUNC_NO_LIBS(tgetent, termcap ncurses curses,[
448 #ifdef HAVE_TERMCAP_H
449 #include <termcap.h>
450 #endif
451 #ifdef HAVE_CURSES_H
452 #include <curses.h>
453 #endif
454 ],[0,0])
456 dnl Checks for library functions.
458 AC_CHECK_FUNCS([                                \
459         _getpty                                 \
460         _scrsize                                \
461         arc4random                              \
462         backtrace                               \
463         fcntl                                   \
464         fork                                    \
465         getpeereid                              \
466         getpeerucred                            \
467         grantpt                                 \
468         kill                                    \
469         mktime                                  \
470         ptsname                                 \
471         rand                                    \
472         revoke                                  \
473         select                                  \
474         setitimer                               \
475         setpcred                                \
476         setpgid                                 \
477         setproctitle                            \
478         setregid                                \
479         setresgid                               \
480         setresuid                               \
481         setreuid                                \
482         setsid                                  \
483         setutent                                \
484         sigaction                               \
485         strstr                                  \
486         ttyname                                 \
487         ttyslot                                 \
488         umask                                   \
489         unlockpt                                \
490         vhangup                                 \
491         waitpid                                 \
492         yp_get_default_domain                   \
495 AC_MSG_CHECKING([checking for __sync_add_and_fetch])
496 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>]],
497         [[unsigned int foo, bar; bar = __sync_add_and_fetch(&foo, 1);]])],
498         [ac_rk_have___sync_add_and_fetch=yes], [ac_rk_have___sync_add_and_fetch=no])
499 if test "$ac_rk_have___sync_add_and_fetch" = "yes" ; then
500         AC_DEFINE_UNQUOTED(HAVE___SYNC_ADD_AND_FETCH, 1, [have __sync_add_and_fetch])
502 AC_MSG_RESULT($ac_rk_have___sync_add_and_fetch)
504 AC_FUNC_MMAP
506 KRB_CAPABILITIES
507 rk_DLADDR
509 AC_CHECK_GETPWNAM_R_POSIX
511 dnl detect doors on solaris
512 if test "$enable_pthread_support" != no; then
513    saved_LIBS="$LIBS"
514    LIBS="$LIBS $PTHREADS_LIBS"
515    AC_FIND_FUNC_NO_LIBS(door_create, door)
516    LIBS="$saved_LIBS"
519 AC_ARG_ENABLE(kcm,
520         AS_HELP_STRING([--enable-kcm],[enable Kerberos Credentials Manager]),
521 ,[enable_kcm=yes])
523 if test "$enable_kcm" = yes ; then
524    if test  "$ac_cv_header_sys_un_h" != yes -a "$ac_cv_funclib_door_create" != yes ; then
525         enable_kcm=no
526    fi
528 if test "$enable_kcm" = yes; then
529        AC_DEFINE(HAVE_KCM, 1,
530                [Define if you want to use the Kerberos Credentials Manager.])
532 AM_CONDITIONAL(KCM, test "$enable_kcm" = yes)
536 dnl Cray stuff
537 AC_CHECK_FUNCS(getudbnam setlim)
539 dnl AC_KRB_FUNC_GETCWD_BROKEN
542 dnl Check for fields in struct utmp
545 AC_HAVE_STRUCT_FIELD(struct utmp, ut_addr, [#include <utmp.h>])
546 AC_HAVE_STRUCT_FIELD(struct utmp, ut_host, [#include <utmp.h>])
547 AC_HAVE_STRUCT_FIELD(struct utmp, ut_id, [#include <utmp.h>])
548 AC_HAVE_STRUCT_FIELD(struct utmp, ut_pid, [#include <utmp.h>])
549 AC_HAVE_STRUCT_FIELD(struct utmp, ut_type, [#include <utmp.h>])
550 AC_HAVE_STRUCT_FIELD(struct utmp, ut_user, [#include <utmp.h>])
551 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_host, [#include <utmpx.h>])
552 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_id, [#include <utmpx.h>])
553 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_line, [#include <utmpx.h>])
554 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_pid, [#include <utmpx.h>])
555 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_tv, [#include <utmpx.h>])
556 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_type, [#include <utmpx.h>])
557 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_user, [#include <utmpx.h>])
558 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_exit, [#include <utmpx.h>])
559 AC_HAVE_STRUCT_FIELD(struct utmpx, ut_syslen, [#include <utmpx.h>])
561 AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, 
562         u_int8_t, u_int16_t, u_int32_t, u_int64_t,
563         uint8_t, uint16_t, uint32_t, uint64_t],,,[
564 #ifdef HAVE_INTTYPES_H
565 #include <inttypes.h>
566 #endif
567 #ifdef HAVE_SYS_TYPES_H
568 #include <sys/types.h>
569 #endif
570 #ifdef HAVE_SYS_BITYPES_H
571 #include <sys/bitypes.h>
572 #endif
573 #ifdef HAVE_BIND_BITYPES_H
574 #include <bind/bitypes.h>
575 #endif
576 #ifdef HAVE_NETINET_IN6_MACHTYPES_H
577 #include <netinet/in6_machtypes.h>
578 #endif
581 rk_FRAMEWORK_SECURITY
583 KRB_READLINE
585 rk_TELNET
587 dnl Some operating systems already have com_err and compile_et
588 CHECK_COMPILE_ET
590 rk_AUTH_MODULES([sia afskauthlib])
592 rk_DESTDIRS
594 rk_WFLAGS([-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs])
597 AH_BOTTOM([#ifdef __APPLE__
598 #include <AvailabilityMacros.h>
599 #endif])
601 AH_BOTTOM([#ifdef ROKEN_RENAME
602 #include "roken_rename.h"
603 #endif])
605 AC_ARG_ENABLE(heimdal-documentation,
606         AS_HELP_STRING([--disable-heimdal-documentation],
607                 [if you want disable to heimdal documentation]))
608 AM_CONDITIONAL(HEIMDAL_DOCUMENTATION, test "$enable_heimdal_documentation" != no)
610 AC_CONFIG_FILES(Makefile                \
611         etc/Makefile                    \
612         include/Makefile                \
613         include/gssapi/Makefile         \
614         include/hcrypto/Makefile        \
615         include/kadm5/Makefile          \
616         lib/Makefile                    \
617         lib/base/Makefile                       \
618         lib/asn1/Makefile               \
619         lib/com_err/Makefile            \
620         lib/hcrypto/Makefile            \
621         lib/hx509/Makefile              \
622         lib/gssapi/Makefile             \
623         lib/ntlm/Makefile               \
624         lib/hdb/Makefile                \
625         lib/ipc/Makefile                \
626         lib/kadm5/Makefile              \
627         lib/kafs/Makefile               \
628         lib/kdfs/Makefile               \
629         lib/krb5/Makefile               \
630         lib/otp/Makefile                \
631         lib/roken/Makefile              \
632         lib/sl/Makefile                 \
633         lib/sqlite/Makefile             \
634         lib/vers/Makefile               \
635         lib/wind/Makefile               \
636         po/Makefile                     \
637         kuser/Makefile                  \
638         kpasswd/Makefile                \
639         kadmin/Makefile                 \
640         admin/Makefile                  \
641         kcm/Makefile                    \
642         kdc/Makefile                    \
643         appl/Makefile                   \
644         appl/afsutil/Makefile           \
645         appl/dbutils/Makefile           \
646         appl/ftp/Makefile               \
647         appl/ftp/common/Makefile        \
648         appl/ftp/ftp/Makefile           \
649         appl/ftp/ftpd/Makefile          \
650         appl/gssmask/Makefile           \
651         appl/login/Makefile             \
652         appl/otp/Makefile               \
653         appl/push/Makefile              \
654         appl/su/Makefile                \
655         appl/test/Makefile              \
656         appl/kf/Makefile                \
657         appl/dceutils/Makefile          \
658         tests/Makefile                  \
659         tests/bin/Makefile              \
660         tests/can/Makefile              \
661         tests/db/Makefile               \
662         tests/kdc/Makefile              \
663         tests/ldap/Makefile             \
664         tests/gss/Makefile              \
665         tests/java/Makefile             \
666         tests/plugin/Makefile           \
667         packages/Makefile               \
668         packages/mac/Makefile           \
669         doc/Makefile                    \
670         tools/Makefile                  \
673 AC_OUTPUT
676 dnl This is the release version name-number[beta]
679 cat > include/newversion.h.in <<EOF
680 #ifndef VERSION_HIDDEN
681 #define VERSION_HIDDEN
682 #endif
683 VERSION_HIDDEN const char *heimdal_long_version = "@([#])\$Version: $PACKAGE_STRING by @USER@ on @HOST@ ($host) @DATE@ \$";
684 VERSION_HIDDEN const char *heimdal_version = "AC_PACKAGE_STRING";
687 if test -f include/version.h && cmp -s include/newversion.h.in include/version.h.in; then
688         echo "include/version.h is unchanged"
689         rm -f include/newversion.h.in
690 else
691         echo "creating include/version.h"
692         User=${USER-${LOGNAME}}
693         Host=`(hostname || uname -n || echo unknown) 2>/dev/null | sed 1q`
694         Date=`date`
695         mv -f include/newversion.h.in include/version.h.in
696         sed -e "s/@USER@/$User/" -e "s/@HOST@/$Host/" -e "s/@DATE@/$Date/" include/version.h.in > include/version.h