Changeset 570
- Timestamp:
- 08/25/07 11:55:22 (16 years ago)
- Files:
-
- trunk/libffado/external/dbus/SConscript (modified) (1 diff)
- trunk/libffado/SConstruct (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/external/dbus/SConscript
r566 r570 23 23 CacheDir( 'cache/objects' ) 24 24 25 dbus_env.MergeFlags( ["!pkg-config --cflags --libs dbus-1"] )25 dbus_env.MergeFlags( env['DBUS1_FLAGS'] ) 26 26 27 27 # add the local version of libdbus++ trunk/libffado/SConstruct
r566 r570 20 20 opts = Options( "cache/"+build_base+"options.cache" ) 21 21 22 # 23 # If this is just to display a help-text for the variable used via ARGUMENTS, then its wrong... 22 24 opts.Add( "BUILDDIR", "Path to place the built files in", "") 23 25 … … 75 77 if not os.path.isdir( "cache/" + build_base ): 76 78 os.makedirs( "cache/" + build_base ) 77 if not os.path.isdir( "cache/" + build_base + 'objects' ):78 os.makedirs( "cache/" + build_base + 'objects' )79 80 CacheDir( 'cache/ ' + build_base + 'objects' )79 if not os.path.isdir( 'cache/objects' ): 80 os.makedirs( 'cache/objects' ) 81 82 CacheDir( 'cache/objects' ) 81 83 82 84 opts.Save( 'cache/' + build_base + "options.cache", env ) … … 142 144 env.AppendUnique( CCFLAGS=["-DENABLE_BOUNCE"] ) 143 145 144 env.MergeFlags( ["!pkg-config --cflags --libs libraw1394"] ) 145 env.MergeFlags( ["!pkg-config --cflags --libs libavc1394"] ) 146 env.MergeFlags( ["!pkg-config --cflags --libs libiec61883"] ) 147 env.MergeFlags( ["!pkg-config --cflags --libs alsa"] ) 148 env.MergeFlags( ["!pkg-config --cflags --libs libxml++-2.6"] ) 149 env.MergeFlags( ["!pkg-config --cflags --libs liblo"] ) 150 146 # 147 # TODO: Most of these flags aren't needed for all the apps/libs compiled here. 148 # The relevant MergeFlags-calls should be moved to the SConscript-files where 149 # its needed... 150 env.MergeFlags( env['LIBRAW1394_FLAGS'] ) 151 env.MergeFlags( env['LIBAVC1394_FLAGS'] ) 152 env.MergeFlags( env['LIBIEC61883_FLAGS'] ) 153 env.MergeFlags( env['ALSA_FLAGS'] ) 154 env.MergeFlags( env['LIBXML26_FLAGS'] ) 155 env.MergeFlags( env['LIBLO_FLAGS'] ) 151 156 152 157 #