Ignore:
File:
1 edited

Legend:

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

    • Property svn:keywords set to Author
    r1 r3  
    1 /* $Header: /pjproject-0.3/pjlib/include/pj/config.h 12    10/29/05 10:25p Bennylp $ */ 
     1/* $Id$ 
     2 * 
     3 */ 
    24 
    35#ifndef __PJ_CONFIG_H__ 
     
    2224 
    2325/******************************************************************** 
    24  * Include target specific configuration. 
    25  */ 
    26 #if defined(PJ_WIN32) 
     26 * Include target OS specific configuration. 
     27 */ 
     28#if defined(PJ_WIN32) && PJ_WIN32!=0 
    2729#  include <pj/compat/os_win32.h> 
    28 #elif defined(PJ_LINUX) 
     30#elif defined(PJ_LINUX) && PJ_LINUX!=0 
    2931#  include <pj/compat/os_linux.h> 
    30 #elif defined(PJ_LINUX_KERNEL) 
     32#elif defined(PJ_LINUX_KERNEL) && PJ_LINUX_KERNEL!=0 
    3133#  include <pj/compat/os_linux_kernel.h> 
    32 #elif defined(PJ_PALMOS) 
     34#elif defined(PJ_PALMOS) && PJ_PALMOS!=0 
    3335#  include <pj/compat/os_palmos.h> 
     36#elif defined(PJ_SUNOS) && PJ_SUNOS!=0 
     37#  include <pj/compat/os_sunos.h> 
    3438#else 
    3539#  error "Please specify target os." 
     
    4145 */ 
    4246#if defined (PJ_M_I386) && PJ_M_I386 != 0 
    43 include <pj/compat/m_i386.h> 
     47 include <pj/compat/m_i386.h> 
    4448#elif defined (PJ_M_M68K) && PJ_M_M68K != 0 
    4549#   include <pj/compat/m_m68k.h> 
    4650#elif defined (PJ_M_ALPHA) && PJ_M_ALPHA != 0 
    4751#   include <pj/compat/m_alpha.h> 
     52#elif defined (PJ_M_SPARC) && PJ_M_SPARC != 0 
     53#   include <pj/compat/m_sparc.h> 
    4854#else 
    4955#  error "Please specify target machine." 
Note: See TracChangeset for help on using the changeset viewer.