Lines 207-213
Link Here
|
207 |
if mozIncludeBase is None: |
207 |
if mozIncludeBase is None: |
208 |
raise ValueError("Can't find mozilla include base directory") |
208 |
raise ValueError("Can't find mozilla include base directory") |
209 |
for subdir in ['dom', 'gfx', 'widget', 'commandhandler', 'uriloader', |
209 |
for subdir in ['dom', 'gfx', 'widget', 'commandhandler', 'uriloader', |
210 |
'webbrwsr']: |
210 |
'webbrwsr', 'necko']: |
211 |
path = os.path.join(mozIncludeBase, subdir) |
211 |
path = os.path.join(mozIncludeBase, subdir) |
212 |
mozilla_browser_options['include_dirs'].append(path) |
212 |
mozilla_browser_options['include_dirs'].append(path) |
213 |
|
213 |
|
Lines 243-249
Link Here
|
243 |
|
243 |
|
244 |
#### Xine Extension #### |
244 |
#### Xine Extension #### |
245 |
xine_options = parsePkgConfig('pkg-config', |
245 |
xine_options = parsePkgConfig('pkg-config', |
246 |
'libxine pygtk-2.0 gtk+-2.0 glib-2.0 gthread-2.0') |
246 |
'libxine pygtk-2.0 gtk+-2.0 glib-2.0 gthread-2.0 x11') |
247 |
xine_ext = Extension('miro.xine', [ |
247 |
xine_ext = Extension('miro.xine', [ |
248 |
os.path.join(xine_dir, 'xine.pyx'), |
248 |
os.path.join(xine_dir, 'xine.pyx'), |
249 |
os.path.join(xine_dir, 'xine_impl.c'), |
249 |
os.path.join(xine_dir, 'xine_impl.c'), |