# HG changeset patch # User Richard M. Stallman # Date 757922296 0 # Node ID 6fbbbe65afe5c71853855a6485663a1ef84f3589 # Parent 8f79303487ae848bacb2c33ba913f7b803f17068 Handle HAVE_BCMP. (BSTRING): Don't define unless HAVE_BCMP. diff -r 8f79303487ae -r 6fbbbe65afe5 src/config.in --- a/src/config.in Fri Jan 07 05:55:40 1994 +0000 +++ b/src/config.in Fri Jan 07 05:58:16 1994 +0000 @@ -120,6 +120,7 @@ #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 @@ #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