comparison configure.in @ 51410:51712cc110e2

Revert changes of 2003-03-03 and 2003-05-28.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 02 Jun 2003 19:25:06 +0000
parents ce4fe46f9b13
children f36efdc0ae5e
comparison
equal deleted inserted replaced
51409:c8872e52d353 51410:51712cc110e2
2852 # ifndef GC_LISP_OBJECT_ALIGNMENT 2852 # ifndef GC_LISP_OBJECT_ALIGNMENT
2853 # define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object)) 2853 # define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object))
2854 # endif 2854 # endif
2855 #endif 2855 #endif
2856 2856
2857 /* On Mac OS X, these macros are already defined in precompiled headers. */ 2857 #ifndef HAVE_BCOPY
2858 #ifndef MAC_OSX 2858 #define bcopy(a,b,s) memcpy (b,a,s)
2859 /* avoid deprecated functions */ 2859 #endif
2860 # ifdef HAVE_MEMCPY 2860 #ifndef HAVE_BZERO
2861 # define bcopy(a,b,s) memcpy (b,a,s) 2861 #define bzero(a,s) memset (a,0,s)
2862 # endif 2862 #endif
2863 # ifdef HAVE_MEMSET 2863 #ifndef HAVE_BCMP
2864 # define bzero(a,s) memset (a,0,s) 2864 #define BCMP memcmp
2865 # endif 2865 #endif
2866 # ifdef HAVE_MEMCMP
2867 # define BCMP memcmp
2868 # define bcmp memcmp
2869 # endif
2870 #endif /* MAC_OSX */
2871 2866
2872 #endif /* EMACS_CONFIG_H */ 2867 #endif /* EMACS_CONFIG_H */
2873 2868
2874 /* 2869 /*
2875 Local Variables: 2870 Local Variables: