Ignore:
Timestamp:
Sep 10, 2006 8:53:59 AM (18 years ago)
Author:
bennylp
Message:

Fixed autoconf on MacOS X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/compat/m_auto.h.in

    r689 r698  
    2525 */ 
    2626 
     27/* Machine name, filled in by autoconf script */ 
    2728#undef PJ_M_NAME 
    2829 
    29 #undef PJ_IS_LITTLE_ENDIAN 
    30 #undef PJ_IS_BIG_ENDIAN 
     30/* Endianness, as detected by autoconf */ 
     31#undef WORDS_BIGENDIAN 
     32 
     33#ifdef WORDS_BIGENDIAN 
     34#  define PJ_IS_LITTLE_ENDIAN   0 
     35#  define PJ_IS_BIG_ENDIAN      1 
     36#else 
     37#  define PJ_IS_LITTLE_ENDIAN   1 
     38#  define PJ_IS_BIG_ENDIAN      0 
     39#endif 
     40 
    3141 
    3242/* Specify if floating point is present/desired */ 
Note: See TracChangeset for help on using the changeset viewer.