
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@877 ec53bebd-3082-4978-b11e-865c3cabbd6b
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_REVISION($Revision$)
|
|
AC_INIT(lib/krb5/send_to_kdc.c)
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
PACKAGE=heimdal
|
|
VERSION=0.0
|
|
AC_SUBST(PACKAGE)
|
|
AC_SUBST(VERSION)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
dnl AC_KRB_PROG_YACC
|
|
AC_PROG_YACC
|
|
AC_PROG_LEX
|
|
AC_PROG_RANLIB
|
|
AC_PROG_MAKE_SET
|
|
AC_LN_S
|
|
AC_ARG_PROGRAM
|
|
|
|
dnl Checks for libraries.
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h sys/time.h unistd.h)
|
|
AC_CHECK_HEADERS(sys/bitypes.h sys/filio.h sys/types.h)
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_CONST
|
|
AC_TYPE_OFF_T
|
|
AC_TYPE_SIZE_T
|
|
AC_HEADER_TIME
|
|
AC_STRUCT_TM
|
|
|
|
dnl Checks for library functions.
|
|
AC_CHECK_FUNCS(gethostname mktime select socket strdup strstr)
|
|
|
|
AC_TYPE_SIGNAL
|
|
if test "$ac_cv_type_signal" = "void" ; then
|
|
AC_DEFINE(VOID_RETSIGTYPE, 1)
|
|
fi
|
|
AC_SUBST(VOID_RETSIGTYPE)
|
|
|
|
|
|
AC_GROK_TYPES(int8_t int16_t int32_t int64_t)
|
|
AC_GROK_TYPES(u_int8_t u_int16_t u_int32_t u_int64_t)
|
|
|
|
AC_OUTPUT(Makefile \
|
|
include/Makefile \
|
|
lib/Makefile \
|
|
lib/asn1/Makefile \
|
|
lib/des/Makefile \
|
|
lib/krb5/Makefile \
|
|
kuser/Makefile)
|