diff options
author | Dave Love <fx@gnu.org> | 2002-11-08 12:32:10 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-11-08 12:32:10 +0000 |
commit | 6bae0ccfb12006d172b7f9670110edff3246217a (patch) | |
tree | 478b6620af9eca8c9debebc7319226fe705273ad /src/config.in | |
parent | 17b3d9f6ac1eee428ff28374f72105179724b2ec (diff) | |
download | emacs-6bae0ccfb12006d172b7f9670110edff3246217a.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/config.in')
-rw-r--r-- | src/config.in | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/src/config.in b/src/config.in index c5ae332df3b..3430d37ddc4 100644 --- a/src/config.in +++ b/src/config.in @@ -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: +*/ + |