diff options
| author | Dave Love | 2002-11-08 12:30:21 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-08 12:30:21 +0000 |
| commit | 17b3d9f6ac1eee428ff28374f72105179724b2ec (patch) | |
| tree | cfaa1cf242e28a68f3d3be25b962b6723cc1383e | |
| parent | 63e9e99c832da38a0c40a95aae0bc80a5cb5ae4b (diff) | |
| download | emacs-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.in | 10 |
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 | |||
| 23 | dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 23 | dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 24 | dnl Boston, MA 02111-1307, USA. | 24 | dnl Boston, MA 02111-1307, USA. |
| 25 | 25 | ||
| 26 | AC_PREREQ(2.53)dnl | 26 | AC_PREREQ(2.54)dnl |
| 27 | AC_INIT(src/lisp.h) | 27 | AC_INIT(src/lisp.h) |
| 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) | 28 | AC_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" |
| 1383 | fi | 1383 | fi |
| 1384 | 1384 | ||
| 1385 | dnl For AC_FUNC_GETLOADAVG, at least: | ||
| 1386 | AC_CONFIG_LIBOBJ_DIR(src) | ||
| 1387 | |||
| 1385 | dnl Do this early because it can frob feature test macros for Unix-98 &c. | 1388 | dnl Do this early because it can frob feature test macros for Unix-98 &c. |
| 1386 | AC_SYS_LARGEFILE | 1389 | AC_SYS_LARGEFILE |
| 1387 | 1390 | ||
| @@ -1394,6 +1397,8 @@ if test "${with_sound}" != "no"; then | |||
| 1394 | fi | 1397 | fi |
| 1395 | 1398 | ||
| 1396 | dnl checks for header files | 1399 | dnl checks for header files |
| 1400 | dnl NB. On Solaris 8 there's a warning from the check for term.h because | ||
| 1401 | dnl it needs something else (curses.h?) to define `bool'. | ||
| 1397 | AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \ | 1402 | AC_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 | ||
| 2616 | typedef 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. */ |