*** empty log message ***
This commit is contained in:
parent
17b3d9f6ac
commit
6bae0ccfb1
3 changed files with 547 additions and 930 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-11-08 Dave Love <fx@gnu.org>
|
||||
|
||||
* configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf
|
||||
2.54.
|
||||
(AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
|
||||
|
||||
2002-11-07 Miles Bader <miles@gnu.org>
|
||||
|
||||
* Makefile.in (maybe_bootstrap): Fix shell variable usage. Handle
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* src/config.in. Generated from configure.in by autoheader. */
|
||||
|
||||
/* GNU Emacs site configuration template file. -*- C -*-
|
||||
Copyright (C) 1988, 1993, 1994, 1999, 2000 Free Software Foundation, Inc.
|
||||
/* 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.
|
||||
|
||||
|
@ -320,6 +320,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have the `mbsinit' function. */
|
||||
#undef HAVE_MBSINIT
|
||||
|
||||
/* Define to 1 if you have the `memmove' function. */
|
||||
#undef HAVE_MEMMOVE
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
|
@ -343,6 +346,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have Motif 2.1 or newer. */
|
||||
#undef HAVE_MOTIF_2_1
|
||||
|
||||
/* Define to 1 if you have the `mremap' function. */
|
||||
#undef HAVE_MREMAP
|
||||
|
||||
/* Define to 1 if you have the <nlist.h> header file. */
|
||||
#undef HAVE_NLIST_H
|
||||
|
||||
|
@ -352,6 +358,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have the `pstat_getdynamic' function. */
|
||||
#undef HAVE_PSTAT_GETDYNAMIC
|
||||
|
||||
/* Define to 1 if you have the <pty.h> header file. */
|
||||
#undef HAVE_PTY_H
|
||||
|
||||
/* Define to 1 if you have the `random' function. */
|
||||
#undef HAVE_RANDOM
|
||||
|
||||
|
@ -400,6 +409,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have the `shutdown' function. */
|
||||
#undef HAVE_SHUTDOWN
|
||||
|
||||
/* Define to 1 if the system has the type `size_t'. */
|
||||
#undef HAVE_SIZE_T
|
||||
|
||||
/* Define to 1 if you have the <soundcard.h> header file. */
|
||||
#undef HAVE_SOUNDCARD_H
|
||||
|
||||
|
@ -442,6 +454,12 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have the `sysinfo' function. */
|
||||
#undef HAVE_SYSINFO
|
||||
|
||||
/* Define to 1 if you have the <sys/mman.h> header file. */
|
||||
#undef HAVE_SYS_MMAN_H
|
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
#undef HAVE_SYS_PARAM_H
|
||||
|
||||
/* Define to 1 if you have the <sys/select.h> header file. */
|
||||
#undef HAVE_SYS_SELECT_H
|
||||
|
||||
|
@ -711,9 +729,6 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
#undef pid_t
|
||||
|
||||
/* Define to `unsigned' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
||||
|
||||
/* Define as `fork' if `vfork' does not work. */
|
||||
#undef vfork
|
||||
|
||||
|
@ -894,9 +909,15 @@ extern char *getenv ();
|
|||
#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
|
||||
#ifndef HAVE_SIZE_T
|
||||
typedef size_t unsigned
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Define HAVE_X_I18N if we have usable i18n support. */
|
||||
|
@ -923,3 +944,9 @@ extern char *getenv ();
|
|||
#define NO_RETURN /* nothing */
|
||||
#endif
|
||||
|
||||
/*
|
||||
Local variables:
|
||||
mode: c
|
||||
End:
|
||||
*/
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue