emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/config.in


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/src/config.in
Date: Fri, 06 Jun 2003 06:16:42 -0400

Index: emacs/src/config.in
diff -c emacs/src/config.in:1.186 emacs/src/config.in:1.187
*** emacs/src/config.in:1.186   Sat May 24 15:31:42 2003
--- emacs/src/config.in Fri Jun  6 06:16:42 2003
***************
*** 319,324 ****
--- 319,327 ----
  /* Define to 1 if you have the <linux/version.h> header file. */
  #undef HAVE_LINUX_VERSION_H
  
+ /* Define to 1 if you have the <locale.h> header file. */
+ #undef HAVE_LOCALE_H
+ 
  /* Define to 1 if you have the `logb' function. */
  #undef HAVE_LOGB
  
***************
*** 346,360 ****
--- 349,372 ----
  /* Define to 1 if you have the `mbsinit' function. */
  #undef HAVE_MBSINIT
  
+ /* Define to 1 if <wchar.h> declares mbstate_t. */
+ #undef HAVE_MBSTATE_T
+ 
  /* Define to 1 if you have the `memcmp' function. */
  #undef HAVE_MEMCMP
  
+ /* Define to 1 if you have the `memcpy' function. */
+ #undef HAVE_MEMCPY
+ 
  /* Define to 1 if you have the `memmove' function. */
  #undef HAVE_MEMMOVE
  
  /* Define to 1 if you have the <memory.h> header file. */
  #undef HAVE_MEMORY_H
  
+ /* Define to 1 if you have the `mempcpy' function. */
+ #undef HAVE_MEMPCPY
+ 
  /* Define to 1 if you have the `memset' function. */
  #undef HAVE_MEMSET
  
***************
*** 656,664 ****
     on `HAVE_STRUCT_NLIST_N_UN_N_NAME */
  #undef NLIST_NAME_UNION
  
- /* Define to 1 if you have <nlist.h>. */
- #undef NLIST_STRUCT
- 
  /* Define to 1 if you don't have struct exception in math.h. */
  #undef NO_MATHERR
  
--- 668,673 ----
***************
*** 771,776 ****
--- 780,788 ----
  /* Define to empty if `const' does not conform to ANSI C. */
  #undef const
  
+ /* Define to a type if <wchar.h> does not define. */
+ #undef mbstate_t
+ 
  /* Define to `int' if <sys/types.h> does not define. */
  #undef pid_t
  
***************
*** 1013,1032 ****
  #  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 */
  
  #endif /* EMACS_CONFIG_H */
  
--- 1025,1039 ----
  #  endif
  #endif
  
! #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 */
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]