aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in24
1 files changed, 16 insertions, 8 deletions
diff --git a/configure.in b/configure.in
index 2e077da175a..8f6c1c62b35 100644
--- a/configure.in
+++ b/configure.in
@@ -23,7 +23,7 @@ dnl along with GNU Emacs; see the file COPYING. If not, write to the
23dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24dnl Boston, MA 02111-1307, USA. 24dnl Boston, MA 02111-1307, USA.
25 25
26AC_PREREQ(2.51)dnl 26AC_PREREQ(2.53)dnl
27AC_INIT(src/lisp.h) 27AC_INIT(src/lisp.h)
28AC_CONFIG_HEADER(src/config.h:src/config.in) 28AC_CONFIG_HEADER(src/config.h:src/config.in)
29 29
@@ -1219,7 +1219,6 @@ dnl checks for programs
1219AC_PROG_LN_S 1219AC_PROG_LN_S
1220AC_PROG_CPP 1220AC_PROG_CPP
1221AC_PROG_INSTALL 1221AC_PROG_INSTALL
1222AC_PROG_YACC
1223if test "x$RANLIB" = x; then 1222if test "x$RANLIB" = x; then
1224 AC_PROG_RANLIB 1223 AC_PROG_RANLIB
1225fi 1224fi
@@ -1397,7 +1396,8 @@ fi
1397dnl checks for header files 1396dnl checks for header files
1398AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \ 1397AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
1399 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \ 1398 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
1400 termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h) 1399 termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h pty.h sys/mman.h \
1400 sys/param.h)
1401AC_HEADER_STDC 1401AC_HEADER_STDC
1402AC_HEADER_TIME 1402AC_HEADER_TIME
1403AC_DECL_SYS_SIGLIST 1403AC_DECL_SYS_SIGLIST
@@ -2086,7 +2086,7 @@ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
2086utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \ 2086utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \
2087__fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \ 2087__fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \
2088sendto recvfrom getsockopt setsockopt getsockname getpeername \ 2088sendto recvfrom getsockopt setsockopt getsockname getpeername \
2089gai_strerror mkstemp getline getdelim) 2089gai_strerror mkstemp getline getdelim mremap memmove)
2090 2090
2091AC_CHECK_HEADERS(sys/un.h) 2091AC_CHECK_HEADERS(sys/un.h)
2092 2092
@@ -2290,8 +2290,7 @@ fi
2290 2290
2291AC_FUNC_FORK 2291AC_FUNC_FORK
2292 2292
2293# Fixme: This should be replaced when we have autoconf 2.14. 2293AC_CHECK_TYPES(size_t)
2294AC_SIZE_T
2295 2294
2296# Set up the CFLAGS for real compilation, so we can substitute it. 2295# Set up the CFLAGS for real compilation, so we can substitute it.
2297CFLAGS="$REAL_CFLAGS" 2296CFLAGS="$REAL_CFLAGS"
@@ -2401,8 +2400,8 @@ fi
2401AC_CHECK_HEADERS(nlist.h, [AC_DEFINE(NLIST_STRUCT, 1, 2400AC_CHECK_HEADERS(nlist.h, [AC_DEFINE(NLIST_STRUCT, 1,
2402 [Define to 1 if you have <nlist.h>.])]) 2401 [Define to 1 if you have <nlist.h>.])])
2403 2402
2404AH_TOP([/* GNU Emacs site configuration template file. -*- C -*- 2403AH_TOP([/* GNU Emacs site configuration template file.
2405 Copyright (C) 1988, 1993, 1994, 1999, 2000 Free Software Foundation, Inc. 2404 Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc.
2406 2405
2407This file is part of GNU Emacs. 2406This file is part of GNU Emacs.
2408 2407
@@ -2602,6 +2601,9 @@ extern char *getenv ();
2602#ifdef HAVE_STRING_H 2601#ifdef HAVE_STRING_H
2603#include "string.h" 2602#include "string.h"
2604#endif 2603#endif
2604#ifdef HAVE_STRINGS_H
2605#include "strings.h" /* May be needed for bcopy & al. */
2606#endif
2605#ifdef HAVE_STDLIB_H 2607#ifdef HAVE_STDLIB_H
2606#include <stdlib.h> 2608#include <stdlib.h>
2607#endif 2609#endif
@@ -2630,6 +2632,12 @@ extern char *getenv ();
2630#else 2632#else
2631#define NO_RETURN /* nothing */ 2633#define NO_RETURN /* nothing */
2632#endif 2634#endif
2635
2636/*
2637Local variables:
2638mode: c
2639End:
2640*/
2633])dnl 2641])dnl
2634 2642
2635#### Report on what we decided to do. 2643#### Report on what we decided to do.