diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/config.h.in b/config.h.in index 2332ce5..f2e39db 100644 --- a/config.h.in +++ b/config.h.in @@ -53,17 +53,19 @@ /* Define to the name of the distribution. */ #undef PACKAGE -/* Define to the patch-level of the distribution. */ -#undef PATCH_LEVEL - /* Define to 1 if ANSI function prototypes are usable. */ #undef PROTOTYPES /* Define to the major.minor version # of the distribution. */ #undef VERSION -/* The number of bytes in a long. */ -#undef SIZEOF_LONG +#ifndef __P +# ifndef PROTOTYPES +# define __P(args) () +# else +# define __P(args) args +# endif +#endif /* Define if you have the basename function. */ #undef HAVE_BASENAME @@ -170,20 +172,21 @@ /* Define if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H -/* (u)intmin32_t are integer types that are *at least* 32 bits. - Larger ints are OK. */ -#if SIZEOF_LONG == 4 - typedef unsigned long uintmin32_t; - typedef long intmin32_t; -#else - typedef unsigned int uintmin32_t; - typedef int intmin32_t; -#endif +/* According to Thomas Neumann, NeXT POSIX termios support is losing, + and sgtty is the way to go. Note: the comment between #undef & + HAVE_TERMIOS_H is necessary to defeat configure's edits. */ -/* NeXT POSIX compatibility is losing. sgtty is the way to go. */ #if HAVE_SGTTY_H # ifdef NeXT -# undef HAVE_TERMIOS_H +# undef /**/ HAVE_TERMIOS_H +# endif +#endif + +#ifndef __P +# ifndef PROTOTYPES +# define __P(args) () +# else +# define __P(args) args # endif #endif |