aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-11-08 12:30:21 +0000
committerDave Love2002-11-08 12:30:21 +0000
commit17b3d9f6ac1eee428ff28374f72105179724b2ec (patch)
treecfaa1cf242e28a68f3d3be25b962b6723cc1383e
parent63e9e99c832da38a0c40a95aae0bc80a5cb5ae4b (diff)
downloademacs-17b3d9f6ac1eee428ff28374f72105179724b2ec.tar.gz
emacs-17b3d9f6ac1eee428ff28374f72105179724b2ec.zip
Use AC_CONFIG_LIBOBJ_DIR and require autoconf
2.54. (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
-rw-r--r--configure.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 8f6c1c62b35..652d2c1dcb3 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.53)dnl 26AC_PREREQ(2.54)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
@@ -1382,6 +1382,9 @@ else
1382 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" 1382 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
1383fi 1383fi
1384 1384
1385dnl For AC_FUNC_GETLOADAVG, at least:
1386AC_CONFIG_LIBOBJ_DIR(src)
1387
1385dnl Do this early because it can frob feature test macros for Unix-98 &c. 1388dnl Do this early because it can frob feature test macros for Unix-98 &c.
1386AC_SYS_LARGEFILE 1389AC_SYS_LARGEFILE
1387 1390
@@ -1394,6 +1397,8 @@ if test "${with_sound}" != "no"; then
1394fi 1397fi
1395 1398
1396dnl checks for header files 1399dnl checks for header files
1400dnl NB. On Solaris 8 there's a warning from the check for term.h because
1401dnl it needs something else (curses.h?) to define `bool'.
1397AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \ 1402AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
1398 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \ 1403 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
1399 termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h pty.h sys/mman.h \ 1404 termcap.h stdio_ext.h fcntl.h term.h strings.h coff.h pty.h sys/mman.h \
@@ -2607,6 +2612,9 @@ extern char *getenv ();
2607#ifdef HAVE_STDLIB_H 2612#ifdef HAVE_STDLIB_H
2608#include <stdlib.h> 2613#include <stdlib.h>
2609#endif 2614#endif
2615#ifndef HAVE_SIZE_T
2616typedef size_t unsigned
2617#endif
2610#endif 2618#endif
2611 2619
2612/* Define HAVE_X_I18N if we have usable i18n support. */ 2620/* Define HAVE_X_I18N if we have usable i18n support. */