Changes between Version 98 and Version 99 of FAQ


Ignore:
Timestamp:
Aug 25, 2010 11:53:58 AM (14 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v98 v99  
    12891289 
    12901290== MinGW Specific Questions == 
     1291 
     1292=== ./configure fails to update os_auto.h === #mingw-configure 
     1293 
     1294If you have error similar to: 
     1295 
     1296{{{ 
     1297In file included from ../include/pj/types.h:33, 
     1298                 from ../include/pj/ioqueue.h:33, 
     1299                 from .. 
     1300../include/pj/config.h:1072:4: error: #error "PJ_HAS_HIGH_RES_TIMER is not defined!" 
     1301../include/pj/config.h:1088:4: error: #error "PJ_EMULATE_RW_MUTEX should be defined in compat/os_xx.h" 
     1302../include/pj/config.h:1092:4: error: #error "PJ_THREAD_SET_STACK_SIZE should be defined in compat/os_xx.h" 
     1303../include/pj/config.h:1092:4: error: #error "PJ_THREAD_ALLOCATE_STACK should be defined in compat/os_xx.h" 
     1304.. 
     1305}}} 
     1306 
     1307and typically followed by tens of subsequent errors, this is caused by the {{{configure}}} script's inability to update the macros in {{{pj/compat/os_auto.h.in}}}, causing all of them to be undefined, and this is caused by '''newline a.k.a CR/LF problem''' of your PJSIP distribution. Make sure you download the Unix .tar.bz2 version (which has LF newlines) rather than Windows .zip version, which has CR/LF newlines. 
     1308 
    12911309 
    12921310=== How can I enable SIP TLS Transport on MinGW? === #mingw-tls