Changeset 1963
- Timestamp:
- 03/04/11 04:40:38 (1 year ago)
- Files:
-
- trunk/libffado/SConstruct (modified) (2 diffs)
- trunk/libffado/src/SConscript (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/SConstruct
r1897 r1963 58 58 BoolVariable( "ENABLE_METRIC_HALO", "Enable/Disable support for the Metric Halo platform.", False ), 59 59 BoolVariable( "ENABLE_RME", "Enable/Disable support for the RME platform.", False ), 60 BoolVariable( "ENABLE_DIGIDESIGN", "Enable/Disable support for Digidesign interfaces.", False ), 60 61 BoolVariable( "ENABLE_MAUDIO", "Enable/Disable support for the M-Audio custom BeBoB devices.", False ), 61 62 BoolVariable( "ENABLE_BOUNCE", "Enable/Disable the BOUNCE device.", False ), … … 340 341 env['ENABLE_METRIC_HALO'] = True 341 342 env['ENABLE_RME'] = True 343 env['ENABLE_DIGIDESIGN'] = True 342 344 env['ENABLE_BOUNCE'] = True 343 345 env['ENABLE_MAUDIO'] = True trunk/libffado/src/SConscript
r1888 r1963 189 189 ' ) 190 190 191 digidesign_source = env.Split( '\ 192 digidesign/digidesign_avdevice.cpp \ 193 libstreaming/digidesign/DigidesignPort.cpp \ 194 libstreaming/digidesign/DigidesignPortInfo.cpp \ 195 libstreaming/digidesign/DigidesignReceiveStreamProcessor.cpp \ 196 libstreaming/digidesign/DigidesignTransmitStreamProcessor.cpp \ 197 ' ) 198 191 199 amdtp_source = env.Split( '\ 192 200 libstreaming/amdtp/AmdtpPort.cpp \ … … 257 265 libenv.MergeFlags( "-DENABLE_RME" ) 258 266 source += rme_source 267 if env['ENABLE_DIGIDESIGN']: 268 libenv.MergeFlags( "-DENABLE_DIGIDESIGN" ) 269 source += digidesign_source 259 270 if env['ENABLE_BOUNCE']: 260 271 env['ENABLE_GENERICAVC'] = True
