Ignore:
Timestamp:
Nov 24, 2006 9:02:19 AM (17 years ago)
Author:
bennylp
Message:

Fixed footprint calculation script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/build/get-footprint.py

    r604 r825  
    4343    ['HAS_PJLIB_SCANNER',       'PJLIB-UTIL text scanner (needed by SIP parser)'], 
    4444    ['HAS_PJLIB_XML',           'PJLIB-UTIL tiny XML (parsing and API) (needs text scanner)'], 
     45    ['HAS_PJLIB_DNS',           'PJLIB-UTIL DNS packet and parsing'], 
     46    ['HAS_PJLIB_RESOLVER',      'PJLIB-UTIL Asynchronous DNS resolver/caching engine'], 
    4547 
    4648    # PJSIP 
    4749    ['HAS_PJSIP_CORE_MSG_ELEM', 'PJSIP Core - Messaging Elements and Parsing (message, headers, SIP URI, TEL URI/RFC 3966, etc.)'], 
    4850    ['HAS_PJSIP_CORE',          'PJSIP Core - Endpoint (transport management, module management, event distribution, etc.)'], 
    49     ['HAS_PJSIP_CORE_MSG_UTIL', 'PJSIP Core - Stateless operations, server resolution and fail-over'], 
     51    ['HAS_PJSIP_CORE_MSG_UTIL', 'PJSIP Core - Stateless operations, SIP SRV, server resolution and fail-over'], 
    5052    ['HAS_PJSIP_UDP_TRANSPORT', 'PJSIP UDP transport'], 
    5153    ['',                        'Subtotal: A minimalistic SIP application (parsing, UDP transport+STUN, no transaction)'], 
     
    100102    ['HAS_PJMEDIA_GSM_CODEC',   'PJMEDIA GSM codec (including PLC)'], 
    101103    ['HAS_PJMEDIA_SPEEX_CODEC', 'PJMEDIA Speex codec (narrowband, wideband, ultra-wideband)'], 
     104    ['HAS_PJMEDIA_ILBC_CODEC',  'PJMEDIA iLBC codec'], 
    102105 
    103106    # Total 
     
    218221    output.write('\n<H3>&lt;pj/config.site.h&gt;</H3>\n') 
    219222    output.write('<tt>\n') 
    220     f = os.popen('cpp -dM ../../pjlib/include/pj/config_site.h | grep PJ') 
     223    f = os.popen('cpp -dM -I../../pjlib/include ../../pjlib/include/pj/config_site.h | grep PJ') 
    221224    s = f.readlines() 
    222225    for l in s: 
Note: See TracChangeset for help on using the changeset viewer.