]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle HAVE_BCMP.
authorRichard M. Stallman <rms@gnu.org>
Fri, 7 Jan 1994 05:58:16 +0000 (05:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 7 Jan 1994 05:58:16 +0000 (05:58 +0000)
(BSTRING): Don't define unless HAVE_BCMP.

src/config.in

index c22806303e2737e8e729172580615ba40208e0e0..30bda6c95876cbd2d0e7522626120dd49ce34e86 100644 (file)
@@ -120,6 +120,7 @@ and this notice must be preserved on all copies.  */
 #undef HAVE_RMDIR
 #undef HAVE_RANDOM
 #undef HAVE_BCOPY
+#undef HAVE_BCMP
 #undef HAVE_LOGB
 #undef HAVE_FREXP
 #undef HAVE_FTIME
@@ -210,9 +211,10 @@ and this notice must be preserved on all copies.  */
 #endif
 
 /* The rest of the code currently tests the CPP symbol BSTRING.
-   Override any claims made by the system-description files.  */
+   Override any claims made by the system-description files.
+   Note that on some SCO version it is possible to have bcopy and not bcmp.  */
 #undef BSTRING
-#ifdef HAVE_BCOPY
+#if defined (HAVE_BCOPY) && defined (HAVE_BCMP)
 #define BSTRING
 #endif