aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-07 05:58:16 +0000
committerRichard M. Stallman1994-01-07 05:58:16 +0000
commitcadc2c79ee863ff26a5742336efc1ba1d0f85569 (patch)
tree04a01b30158719e693ed55bb6792daa44f70f91e /src
parent76d1726a00ee09d472008445541feafccd8a29b0 (diff)
downloademacs-cadc2c79ee863ff26a5742336efc1ba1d0f85569.tar.gz
emacs-cadc2c79ee863ff26a5742336efc1ba1d0f85569.zip
Handle HAVE_BCMP.
(BSTRING): Don't define unless HAVE_BCMP.
Diffstat (limited to 'src')
-rw-r--r--src/config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/config.in b/src/config.in
index c22806303e2..30bda6c9587 100644
--- a/src/config.in
+++ b/src/config.in
@@ -120,6 +120,7 @@ and this notice must be preserved on all copies. */
120#undef HAVE_RMDIR 120#undef HAVE_RMDIR
121#undef HAVE_RANDOM 121#undef HAVE_RANDOM
122#undef HAVE_BCOPY 122#undef HAVE_BCOPY
123#undef HAVE_BCMP
123#undef HAVE_LOGB 124#undef HAVE_LOGB
124#undef HAVE_FREXP 125#undef HAVE_FREXP
125#undef HAVE_FTIME 126#undef HAVE_FTIME
@@ -210,9 +211,10 @@ and this notice must be preserved on all copies. */
210#endif 211#endif
211 212
212/* The rest of the code currently tests the CPP symbol BSTRING. 213/* The rest of the code currently tests the CPP symbol BSTRING.
213 Override any claims made by the system-description files. */ 214 Override any claims made by the system-description files.
215 Note that on some SCO version it is possible to have bcopy and not bcmp. */
214#undef BSTRING 216#undef BSTRING
215#ifdef HAVE_BCOPY 217#if defined (HAVE_BCOPY) && defined (HAVE_BCMP)
216#define BSTRING 218#define BSTRING
217#endif 219#endif
218 220