~pythonregexp2.7/python/issue2636-12

« back to all changes in this revision

Viewing changes to pyconfig.h.in

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:52:42 UTC
  • mfrom: (39033.1.3 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609145242-9m268zc6u87rp1vp
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
426
426
/* Define to 1 if you have the `openpty' function. */
427
427
#undef HAVE_OPENPTY
428
428
 
 
429
/* Define if compiling using MacOS X 10.5 SDK or later. */
 
430
#undef HAVE_OSX105_SDK
 
431
 
429
432
/* Define to 1 if you have the `pathconf' function. */
430
433
#undef HAVE_PATHCONF
431
434
 
973
976
/* Define to profile with the Pentium timestamp counter */
974
977
#undef WITH_TSC
975
978
 
976
 
 
977
 
 /* Define to 1 if your processor stores words with the most significant byte
978
 
    first (like Motorola and SPARC, unlike Intel and VAX). 
979
 
 
980
 
    The block below does compile-time checking for endianness on platforms
981
 
    that use GCC and therefore allows compiling fat binaries on OSX by using 
982
 
    '-arch ppc -arch i386' as the compile flags. The phrasing was choosen
983
 
    such that the configure-result is used on systems that don't use GCC.
984
 
  */
985
 
#ifdef __BIG_ENDIAN__
986
 
#define WORDS_BIGENDIAN 1
987
 
#else
988
 
#ifndef __LITTLE_ENDIAN__
 
979
/* Define to 1 if your processor stores words with the most significant byte
 
980
   first (like Motorola and SPARC, unlike Intel and VAX). */
989
981
#undef WORDS_BIGENDIAN
990
 
#endif
991
 
#endif
992
982
 
993
983
/* Define to 1 if on AIX 3.
994
984
   System headers sometimes define this.
1003
993
/* Define on Irix to enable u_int */
1004
994
#undef _BSD_TYPES
1005
995
 
 
996
/* Define on Darwin to activate all library features */
 
997
#undef _DARWIN_C_SOURCE
 
998
 
1006
999
/* This must be set to 64 on some systems to enable large file support. */
1007
1000
#undef _FILE_OFFSET_BITS
1008
1001