Show
Ignore:
Timestamp:
05/10/08 08:39:39 (16 years ago)
Author:
ppalmers
Message:

add expat based parsing of the device cache. add compile-time selection between libxml++ and expat. will allow to get rid of the libxml++ dependency on the long run. scons SERIALIZE_USE_EXPAT=0Only compile testedscons SERIALIZE_USE_EXPAT=0

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/firmware/SConscript

    r900 r1154  
    3333    env.MergeFlags( env['LIBAVC1394_FLAGS'] ) 
    3434    env.MergeFlags( env['LIBIEC61883_FLAGS'] ) 
    35     env.MergeFlags( env['LIBXML26_FLAGS'] ) 
     35    if not env['SERIALIZE_USE_EXPAT']: 
     36        env.MergeFlags( env['LIBXML26_FLAGS'] ) 
     37    else: 
     38        env.PrependUnique( LIBS=["expat"] ) 
    3639 
    3740static_env = env.Copy()