]> git.eshelyaron.com Git - emacs.git/commitdiff
* config.h.in (HAVE_BCOPY): Add an #undef for this.
authorJim Blandy <jimb@redhat.com>
Sat, 31 Jul 1993 01:21:21 +0000 (01:21 +0000)
committerJim Blandy <jimb@redhat.com>
Sat, 31 Jul 1993 01:21:21 +0000 (01:21 +0000)
(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.

src/config.in

index 0e2e0a2623b39334bf14115b6cc63423e0130799..6ebcde54c2497f7ae8cf297b51706093fb0af32a 100644 (file)
@@ -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__