aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-07-31 01:21:21 +0000
committerJim Blandy1993-07-31 01:21:21 +0000
commit1f88d61ef52d925a90a0423b375e620665cf26fa (patch)
treecb38a1a825aa1706b2859b6e6c4112d64f5b04ab /src
parent3eb217a0b32a5cb857880470ebaa0c1d9c8222b8 (diff)
downloademacs-1f88d61ef52d925a90a0423b375e620665cf26fa.tar.gz
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.in9
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. */
113#undef HAVE_XRMSETDATABASE 113#undef HAVE_XRMSETDATABASE
114#undef HAVE_RANDOM 114#undef HAVE_RANDOM
115 115
116#undef HAVE_BCOPY
117
116/* If using GNU, then support inline function declarations. */ 118/* If using GNU, then support inline function declarations. */
117#ifdef __GNUC__ 119#ifdef __GNUC__
118#define INLINE __inline__ 120#define INLINE __inline__
@@ -194,6 +196,13 @@ and this notice must be preserved on all copies. */
194#define SIGTYPE RETSIGTYPE 196#define SIGTYPE RETSIGTYPE
195#endif 197#endif
196 198
199/* The rest of the code currently tests the CPP symbol BSTRING.
200 Override any claims made by the system-description files. */
201#undef BSTRING
202#ifdef HAVE_BCOPY
203#define BSTRING
204#endif
205
197/* Non-ANSI C compilers usually don't have volatile. */ 206/* Non-ANSI C compilers usually don't have volatile. */
198#ifndef HAVE_VOLATILE 207#ifndef HAVE_VOLATILE
199#ifndef __STDC__ 208#ifndef __STDC__