Mercurial > emacs
changeset 4365:f3506c9677f3
* config.h.in (HAVE_BCOPY): Add an #undef for this.
(BSTRING): #define this iff HAVE_BCOPY is #defined here. Ignore what
the system-description files say. They don't always make fine
enough distinctions between systems, and sometimes the bcopy
routines are available only with X windows.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 31 Jul 1993 01:21:21 +0000 |
parents | 69e5c2373d37 |
children | 04bd0c1a6245 |
files | src/config.in |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/config.in Sat Jul 31 01:08:48 1993 +0000 +++ b/src/config.in Sat Jul 31 01:21:21 1993 +0000 @@ -113,6 +113,8 @@ #undef HAVE_XRMSETDATABASE #undef HAVE_RANDOM +#undef HAVE_BCOPY + /* If using GNU, then support inline function declarations. */ #ifdef __GNUC__ #define INLINE __inline__ @@ -194,6 +196,13 @@ #define SIGTYPE RETSIGTYPE #endif +/* The rest of the code currently tests the CPP symbol BSTRING. + Override any claims made by the system-description files. */ +#undef BSTRING +#ifdef HAVE_BCOPY +#define BSTRING +#endif + /* Non-ANSI C compilers usually don't have volatile. */ #ifndef HAVE_VOLATILE #ifndef __STDC__