diff options
author | Jim Blandy <jimb@redhat.com> | 1993-07-31 01:21:21 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-07-31 01:21:21 +0000 |
commit | 1f88d61ef52d925a90a0423b375e620665cf26fa (patch) | |
tree | cb38a1a825aa1706b2859b6e6c4112d64f5b04ab /src | |
parent | 3eb217a0b32a5cb857880470ebaa0c1d9c8222b8 (diff) | |
download | emacs-1f88d61ef52d925a90a0423b375e620665cf26fa.tar.gz emacs-1f88d61ef52d925a90a0423b375e620665cf26fa.tar.bz2 emacs-1f88d61ef52d925a90a0423b375e620665cf26fa.zip |
* 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.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config.in b/src/config.in index 0e2e0a2623b..6ebcde54c24 100644 --- a/src/config.in +++ b/src/config.in @@ -113,6 +113,8 @@ and this notice must be preserved on all copies. */ #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 @@ and this notice must be preserved on all copies. */ #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__ |