Ignore:
Timestamp:
Aug 20, 2006 8:47:34 PM (18 years ago)
Author:
bennylp
Message:

Finishing autoconf work, also fixed compilation error in publish.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/config.h

    r647 r689  
    4040 * Include target OS specific configuration. 
    4141 */ 
    42 #if defined(PJ_WIN32_WINCE) || defined(_WIN32_WCE) || defined(UNDER_CE) 
     42#if defined(PJ_AUTOCONF) 
     43    /* 
     44     * Autoconf 
     45     */ 
     46#   include <pj/compat/os_auto.h> 
     47 
     48#elif defined(PJ_WIN32_WINCE) || defined(_WIN32_WCE) || defined(UNDER_CE) 
    4349    /* 
    4450     * Windows CE 
     
    109115 * Target machine specific configuration. 
    110116 */ 
    111 #if defined (PJ_M_I386) || defined(_i386_) || defined(i_386_) || \ 
     117#if defined(PJ_AUTOCONF) 
     118    /* 
     119     * Autoconf configured 
     120     */ 
     121#include <pj/compat/m_auto.h> 
     122 
     123#elif defined (PJ_M_I386) || defined(_i386_) || defined(i_386_) || \ 
    112124        defined(_X86_) || defined(x86) || defined(__i386__) || \ 
    113125        defined(__i386) || defined(_M_IX86) || defined(__I86__) 
Note: See TracChangeset for help on using the changeset viewer.