Ignore:
Timestamp:
Mar 18, 2006 12:28:03 PM (18 years ago)
Author:
bennylp
Message:

Fixed or added misc flags to enable build selection via compile time macro

File:
1 edited

Legend:

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

    r182 r331  
    103103#   undef PJ_ENABLE_EXTRA_CHECK 
    104104#   undef PJ_EXCEPTION_USE_WIN32_SEH 
     105#   undef PJ_HAS_ERROR_STRING 
    105106#endif 
    106107 
     
    246247 * be set to this value). 
    247248 * 
    248  * Default: 256 
     249 * Default: 256 (64 for WinCE) 
    249250 */ 
    250251#ifndef PJ_IOQUEUE_MAX_HANDLES 
    251 #  define PJ_IOQUEUE_MAX_HANDLES    (256) 
     252#   if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0 
     253#       define PJ_IOQUEUE_MAX_HANDLES   (64) 
     254#   else 
     255#       define PJ_IOQUEUE_MAX_HANDLES   (256) 
     256#   endif 
    252257#endif 
    253258 
     
    343348#ifndef PJ_TIMESTAMP_USE_RDTSC 
    344349#   define PJ_TIMESTAMP_USE_RDTSC   0 
     350#endif 
     351 
     352/** 
     353 * Include error message string in the library (pj_strerror()). 
     354 * This is very much desirable! 
     355 * 
     356 * Default: 1 
     357 */ 
     358#ifndef PJ_HAS_ERROR_STRING 
     359#   define PJ_HAS_ERROR_STRING      1 
    345360#endif 
    346361 
Note: See TracChangeset for help on using the changeset viewer.