Changeset 505

Show
Ignore:
Timestamp:
09/21/08 18:58:43 (2 months ago)
Author:
smoors
Message:

added header checks for portaudio and portmidi

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Sconstruct

    r469 r505  
    370370# these libraries are optional (can be enabled/disabled, see 'scons -h') 
    371371 
     372if portaudio and not conf.CheckCHeader('portaudio.h'): 
     373    print "portaudio must be installed!" 
     374    Exit(1) 
     375 
     376if portmidi and not conf.CheckCHeader('portmidi.h'): 
     377    print "portmidi must be installed!" 
     378    Exit(1) 
     379 
     380 
    372381#alsa: (default: enabled) 
    373382if alsa and not conf.CheckCHeader('alsa/asoundlib.h'):