Changeset 638
- Timestamp:
- 09/09/07 09:46:02 (15 years ago)
- Files:
-
- trunk/libffado/SConstruct (modified) (2 diffs)
- trunk/libffado/tests/streaming/SConscript (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/SConstruct
r609 r638 114 114 log_file="cache/" + build_base + 'config.log' ) 115 115 116 # 117 # Check if the environment can actually compile c-files by checking for a 118 # header shipped with gcc. 119 # 116 120 if not conf.CheckHeader( "stdio.h" ): 117 121 print "It seems as if stdio.h is missing. This probably means that your build environment is broken, please make sure you have a working c-compiler and libstdc installed and usable." 118 122 Exit( 1 ) 119 123 124 # 125 # The following checks are for headers and libs and packages we need. 126 # 120 127 allpresent = 1; 121 128 allpresent &= conf.CheckHeader( "expat.h" ) … … 147 154 148 155 # 156 # Optional checks follow: 157 # 149 158 env['PYUIC'] = conf.CheckForApp( 'pyuic' ) 159 env['ALSA_SEQ_OUTPUT'] = conf.CheckLib( 'asound', symbol='snd_seq_event_output_direct', autoadd=0 ) 150 160 151 161 env = conf.Finish() trunk/libffado/tests/streaming/SConscript
r561 r638 9 9 env.PrependUnique( LIBS=["ffado"] ) 10 10 11 for app in env.Split( "teststreaming teststreaming2 teststreaming3 testmidistreaming1" ): 11 apps = "teststreaming teststreaming2 teststreaming3" 12 if env['ALSA_SEQ_OUTPUT']: 13 apps += " testmidistreaming1" 14 15 for app in env.Split( apps ): 12 16 env.Program( target=app, source = [ app+".c", "debugtools.c" ] ) 13 17