Skip to content

Commit

Permalink
setup.py: fix x11 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Mar 4, 2014
1 parent de3ea73 commit 12d6cdb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,9 +496,13 @@ def determine_sdl():
if c_options['use_x11']:
sources['core/window/window_x11.pyx'] = merge(
base_flags, gl_flags, {
'depends': [
'core/window/window_x11_keytab.c',
'core/window/window_x11_core.c'],
# FIXME add an option to depend on them but not compile them
# cause keytab is included in core, and core is included in
# window_x11
#
#'depends': [
# 'core/window/window_x11_keytab.c',
# 'core/window/window_x11_core.c'],
'libraries': ['Xrender', 'X11']})

if c_options['use_gstreamer']:
Expand Down

0 comments on commit 12d6cdb

Please sign in to comment.