Mercurial > emacs
changeset 5479:6fbbbe65afe5
Handle HAVE_BCMP.
(BSTRING): Don't define unless HAVE_BCMP.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 07 Jan 1994 05:58:16 +0000 |
parents | 8f79303487ae |
children | f193f880c524 |
files | src/config.in |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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