]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert changes of 2003-03-03 and 2003-05-28.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 2 Jun 2003 19:26:18 +0000 (19:26 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 2 Jun 2003 19:26:18 +0000 (19:26 +0000)
ChangeLog
configure.in

index aa2d0b946d988d74d0622ba3ba98a8ff79dcc9d2..020dbc127752dfd7af5c405443c842c49c8b61f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-06-02  Richard M. Stallman  <rms@gnu.org>
+
+       * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
+
 2003-05-24  Andreas Schwab  <schwab@suse.de>
 
        * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
@@ -52,8 +56,8 @@
 
 2003-03-03  Rob Browning  <rlb@defaultvalue.org>
 
-       * configure.in: add AC_CHECK_FUNCS for memcmp and memmove.
-       (AH_BOTTOM): switch tests to prefer memcmp, memset, and memmove
+       * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
+       (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
        over bzero, bcmp, and bcopy.
 
 2003-02-23  Simon Josefsson  <jas@extundo.com>
index ab08f35dabe070c530714bcffb077987920d740a..a4eb85b220ffb33a0a7bbe13dae4c6ce2a578c94 100644 (file)
@@ -2854,20 +2854,15 @@ typedef unsigned size_t;
 #  endif
 #endif
 
-/* On Mac OS X, these macros are already defined in precompiled headers.  */
-#ifndef MAC_OSX
-/* avoid deprecated functions */
-#  ifdef HAVE_MEMCPY
-#    define bcopy(a,b,s) memcpy (b,a,s)
-#  endif
-#  ifdef HAVE_MEMSET
-#    define bzero(a,s) memset (a,0,s)
-#  endif
-#  ifdef HAVE_MEMCMP
-#    define BCMP memcmp
-#    define bcmp memcmp
-#  endif
-#endif /* MAC_OSX */
+#ifndef HAVE_BCOPY
+#define bcopy(a,b,s) memcpy (b,a,s)
+#endif
+#ifndef HAVE_BZERO
+#define bzero(a,s) memset (a,0,s)
+#endif
+#ifndef HAVE_BCMP
+#define BCMP memcmp
+#endif
 
 #endif /* EMACS_CONFIG_H */