|
4 | 4 | #ifndef _TCLCONFIG
|
5 | 5 | #define _TCLCONFIG
|
6 | 6 |
|
| 7 | +/* Define if building universal (internal helper macro) */ |
| 8 | +#undef AC_APPLE_UNIVERSAL_BUILD |
| 9 | + |
7 | 10 | /* Is gettimeofday() actually declared in <sys/time.h>? */
|
8 | 11 | #undef GETTOD_NOT_DECLARED
|
9 | 12 |
|
|
208 | 211 | /* Is 'struct stat64' in <sys/stat.h>? */
|
209 | 212 | #undef HAVE_STRUCT_STAT64
|
210 | 213 |
|
211 |
| -/* Define to 1 if `st_blksize' is member of `struct stat'. */ |
| 214 | +/* Define to 1 if `st_blksize' is a member of `struct stat'. */ |
212 | 215 | #undef HAVE_STRUCT_STAT_ST_BLKSIZE
|
213 | 216 |
|
214 |
| -/* Define to 1 if `st_blocks' is member of `struct stat'. */ |
| 217 | +/* Define to 1 if `st_blocks' is a member of `struct stat'. */ |
215 | 218 | #undef HAVE_STRUCT_STAT_ST_BLOCKS
|
216 | 219 |
|
217 | 220 | /* Define to 1 if you have the <sys/filio.h> header file. */
|
|
352 | 355 | /* Define to the one symbol short name of this package. */
|
353 | 356 | #undef PACKAGE_TARNAME
|
354 | 357 |
|
| 358 | +/* Define to the home page for this package. */ |
| 359 | +#undef PACKAGE_URL |
| 360 | + |
355 | 361 | /* Define to the version of this package. */
|
356 | 362 | #undef PACKAGE_VERSION
|
357 | 363 |
|
|
430 | 436 | /* Should we use vfork() instead of fork()? */
|
431 | 437 | #undef USE_VFORK
|
432 | 438 |
|
433 |
| -/* Define to 1 if your processor stores words with the most significant byte |
434 |
| - first (like Motorola and SPARC, unlike Intel and VAX). */ |
435 |
| -#undef WORDS_BIGENDIAN |
| 439 | +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most |
| 440 | + significant byte first (like Motorola and SPARC, unlike Intel). */ |
| 441 | +#if defined AC_APPLE_UNIVERSAL_BUILD |
| 442 | +# if defined __BIG_ENDIAN__ |
| 443 | +# define WORDS_BIGENDIAN 1 |
| 444 | +# endif |
| 445 | +#else |
| 446 | +# ifndef WORDS_BIGENDIAN |
| 447 | +# undef WORDS_BIGENDIAN |
| 448 | +# endif |
| 449 | +#endif |
436 | 450 |
|
437 | 451 | /* Are Darwin SUSv3 extensions available? */
|
438 | 452 | #undef _DARWIN_C_SOURCE
|
|
487 | 501 | /* Define to `int' if <sys/types.h> does not define. */
|
488 | 502 | #undef pid_t
|
489 | 503 |
|
490 |
| -/* Define to `unsigned' if <sys/types.h> does not define. */ |
| 504 | +/* Define to `unsigned int' if <sys/types.h> does not define. */ |
491 | 505 | #undef size_t
|
492 | 506 |
|
493 | 507 | /* Define as int if socklen_t is not available */
|
|
0 commit comments