mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 14:59:20 +02:00
48 lines
929 B
Plaintext
48 lines
929 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl $Id: configure.in,v 1.4 1998-01-17 04:50:17 dfs Exp $
|
|
|
|
AC_INIT(src/amiga.c)
|
|
|
|
cat <<'EOF'
|
|
|
|
**********************
|
|
* *
|
|
* Configuring REMIND *
|
|
* *
|
|
**********************
|
|
|
|
EOF
|
|
|
|
AC_CONFIG_HEADER(src/config.h)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_AWK
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
AC_PROG_MAKE_SET
|
|
|
|
dnl Checks for libraries.
|
|
dnl Replace `main' with a function in -lm:
|
|
|
|
AC_CHECK_LIB(m, sqrt)
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS(sys/file.h sys/time.h sys/types.h unistd.h malloc.h stdarg.h stdlib.h pwd.h)
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_CONST
|
|
AC_STRUCT_TM
|
|
|
|
dnl Checks for library functions.
|
|
AC_TYPE_SIGNAL
|
|
AC_TYPE_PID_T
|
|
AC_TYPE_UID_T
|
|
AC_FUNC_UTIME_NULL
|
|
AC_HEADER_TIME
|
|
AC_FUNC_VPRINTF
|
|
AC_CHECK_FUNCS(mktime putenv strstr timegm)
|
|
|
|
AC_OUTPUT(src/Makefile)
|