comparison src/config.in @ 51512:941614075c6a

*** empty log message ***
author Dave Love <fx@gnu.org>
date Fri, 06 Jun 2003 10:16:42 +0000
parents 79ec3bcd1a81
children 067015689976
comparison
equal deleted inserted replaced
51511:93d8330d12ff 51512:941614075c6a
317 #undef HAVE_LIMITS_H 317 #undef HAVE_LIMITS_H
318 318
319 /* Define to 1 if you have the <linux/version.h> header file. */ 319 /* Define to 1 if you have the <linux/version.h> header file. */
320 #undef HAVE_LINUX_VERSION_H 320 #undef HAVE_LINUX_VERSION_H
321 321
322 /* Define to 1 if you have the <locale.h> header file. */
323 #undef HAVE_LOCALE_H
324
322 /* Define to 1 if you have the `logb' function. */ 325 /* Define to 1 if you have the `logb' function. */
323 #undef HAVE_LOGB 326 #undef HAVE_LOGB
324 327
325 /* Define to 1 if you support file names longer than 14 characters. */ 328 /* Define to 1 if you support file names longer than 14 characters. */
326 #undef HAVE_LONG_FILE_NAMES 329 #undef HAVE_LONG_FILE_NAMES
344 #undef HAVE_MBRLEN 347 #undef HAVE_MBRLEN
345 348
346 /* Define to 1 if you have the `mbsinit' function. */ 349 /* Define to 1 if you have the `mbsinit' function. */
347 #undef HAVE_MBSINIT 350 #undef HAVE_MBSINIT
348 351
352 /* Define to 1 if <wchar.h> declares mbstate_t. */
353 #undef HAVE_MBSTATE_T
354
349 /* Define to 1 if you have the `memcmp' function. */ 355 /* Define to 1 if you have the `memcmp' function. */
350 #undef HAVE_MEMCMP 356 #undef HAVE_MEMCMP
351 357
358 /* Define to 1 if you have the `memcpy' function. */
359 #undef HAVE_MEMCPY
360
352 /* Define to 1 if you have the `memmove' function. */ 361 /* Define to 1 if you have the `memmove' function. */
353 #undef HAVE_MEMMOVE 362 #undef HAVE_MEMMOVE
354 363
355 /* Define to 1 if you have the <memory.h> header file. */ 364 /* Define to 1 if you have the <memory.h> header file. */
356 #undef HAVE_MEMORY_H 365 #undef HAVE_MEMORY_H
366
367 /* Define to 1 if you have the `mempcpy' function. */
368 #undef HAVE_MEMPCPY
357 369
358 /* Define to 1 if you have the `memset' function. */ 370 /* Define to 1 if you have the `memset' function. */
359 #undef HAVE_MEMSET 371 #undef HAVE_MEMSET
360 372
361 /* Define to 1 if you have mouse menus. (This is automatic if you use X, but 373 /* Define to 1 if you have mouse menus. (This is automatic if you use X, but
653 #undef MAIL_USE_POP 665 #undef MAIL_USE_POP
654 666
655 /* Define to 1 if your `struct nlist' has an `n_un' member. Obsolete, depend 667 /* Define to 1 if your `struct nlist' has an `n_un' member. Obsolete, depend
656 on `HAVE_STRUCT_NLIST_N_UN_N_NAME */ 668 on `HAVE_STRUCT_NLIST_N_UN_N_NAME */
657 #undef NLIST_NAME_UNION 669 #undef NLIST_NAME_UNION
658
659 /* Define to 1 if you have <nlist.h>. */
660 #undef NLIST_STRUCT
661 670
662 /* Define to 1 if you don't have struct exception in math.h. */ 671 /* Define to 1 if you don't have struct exception in math.h. */
663 #undef NO_MATHERR 672 #undef NO_MATHERR
664 673
665 /* Define to the address where bug reports for this package should be sent. */ 674 /* Define to the address where bug reports for this package should be sent. */
768 /* Define to the used os dependent file. */ 777 /* Define to the used os dependent file. */
769 #undef config_opsysfile 778 #undef config_opsysfile
770 779
771 /* Define to empty if `const' does not conform to ANSI C. */ 780 /* Define to empty if `const' does not conform to ANSI C. */
772 #undef const 781 #undef const
782
783 /* Define to a type if <wchar.h> does not define. */
784 #undef mbstate_t
773 785
774 /* Define to `int' if <sys/types.h> does not define. */ 786 /* Define to `int' if <sys/types.h> does not define. */
775 #undef pid_t 787 #undef pid_t
776 788
777 /* Define to any substitute for sys_siglist. */ 789 /* Define to any substitute for sys_siglist. */
1011 # ifndef GC_LISP_OBJECT_ALIGNMENT 1023 # ifndef GC_LISP_OBJECT_ALIGNMENT
1012 # define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object)) 1024 # define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object))
1013 # endif 1025 # endif
1014 #endif 1026 #endif
1015 1027
1016 /* On Mac OS X, these macros are already defined in precompiled headers. */ 1028 #ifndef HAVE_BCOPY
1017 #ifndef MAC_OSX 1029 #define bcopy(a,b,s) memcpy (b,a,s)
1018 /* avoid deprecated functions */ 1030 #endif
1019 # ifdef HAVE_MEMCPY 1031 #ifndef HAVE_BZERO
1020 # define bcopy(a,b,s) memcpy (b,a,s) 1032 #define bzero(a,s) memset (a,0,s)
1021 # endif 1033 #endif
1022 # ifdef HAVE_MEMSET 1034 #ifndef HAVE_BCMP
1023 # define bzero(a,s) memset (a,0,s) 1035 #define BCMP memcmp
1024 # endif 1036 #endif
1025 # ifdef HAVE_MEMCMP
1026 # define BCMP memcmp
1027 # define bcmp memcmp
1028 # endif
1029 #endif /* MAC_OSX */
1030 1037
1031 #endif /* EMACS_CONFIG_H */ 1038 #endif /* EMACS_CONFIG_H */
1032 1039
1033 /* 1040 /*
1034 Local Variables: 1041 Local Variables: