dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
dnl Boston, MA 02111-1307, USA.
-AC_PREREQ(2.51)dnl
+AC_PREREQ(2.53)dnl
AC_INIT(src/lisp.h)
AC_CONFIG_HEADER(src/config.h:src/config.in)
AC_PROG_LN_S
AC_PROG_CPP
AC_PROG_INSTALL
-AC_PROG_YACC
if test "x$RANLIB" = x; then
AC_PROG_RANLIB
fi
dnl checks for header files
AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
- termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h)
+ termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h pty.h sys/mman.h \
+ sys/param.h)
AC_HEADER_STDC
AC_HEADER_TIME
AC_DECL_SYS_SIGLIST
utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \
__fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \
sendto recvfrom getsockopt setsockopt getsockname getpeername \
-gai_strerror mkstemp getline getdelim)
+gai_strerror mkstemp getline getdelim mremap memmove)
AC_CHECK_HEADERS(sys/un.h)
AC_FUNC_FORK
-# Fixme: This should be replaced when we have autoconf 2.14.
-AC_SIZE_T
+AC_CHECK_TYPES(size_t)
# Set up the CFLAGS for real compilation, so we can substitute it.
CFLAGS="$REAL_CFLAGS"
AC_CHECK_HEADERS(nlist.h, [AC_DEFINE(NLIST_STRUCT, 1,
[Define to 1 if you have <nlist.h>.])])
-AH_TOP([/* GNU Emacs site configuration template file. -*- C -*-
- Copyright (C) 1988, 1993, 1994, 1999, 2000 Free Software Foundation, Inc.
+AH_TOP([/* GNU Emacs site configuration template file.
+ Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc.
This file is part of GNU Emacs.
#ifdef HAVE_STRING_H
#include "string.h"
#endif
+#ifdef HAVE_STRINGS_H
+#include "strings.h" /* May be needed for bcopy & al. */
+#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#else
#define NO_RETURN /* nothing */
#endif
+
+/*
+Local variables:
+mode: c
+End:
+*/
])dnl
#### Report on what we decided to do.