Ignore:
Timestamp:
Aug 1, 2006 11:01:55 PM (18 years ago)
Author:
bennylp
Message:

Fix PJLIB on WinCE:

  • Added CPU and OS autodetection feature in config.h. For target CPU type, now we don't need to specify PJ_M_* anymore.
  • Fix stricmp_alnum() link error on WinCE
  • Exclude error message test on WincE, since WinCE doesn't have full error reporting capability as Win32.
File:
1 edited

Legend:

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

    r326 r640  
    3737/* For sprintf family */ 
    3838#include <stdio.h> 
     39 
     40/* On WinCE, string stuffs are declared in stdlib.h */ 
     41#if defined(PJ_HAS_STDLIB_H) && PJ_HAS_STDLIB_H!=0 
     42#   include <stdlib.h> 
     43#endif 
    3944 
    4045#if defined(_MSC_VER) 
Note: See TracChangeset for help on using the changeset viewer.