Remove trailing spaces
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
|
||||
import os
|
||||
import sys
|
||||
import sys
|
||||
import platform
|
||||
|
||||
|
||||
def is_active():
|
||||
return True
|
||||
|
||||
|
||||
def get_name():
|
||||
return "X11"
|
||||
|
||||
@ -20,11 +20,11 @@ def can_build():
|
||||
return False # no x11 on mac for now
|
||||
|
||||
errorval=os.system("pkg-config --version > /dev/null")
|
||||
|
||||
|
||||
if (errorval):
|
||||
print("pkg-config not found.. x11 disabled.")
|
||||
return False
|
||||
|
||||
|
||||
x11_error=os.system("pkg-config x11 --modversion > /dev/null ")
|
||||
if (x11_error):
|
||||
print("X11 not found.. x11 disabled.")
|
||||
@ -39,7 +39,7 @@ def can_build():
|
||||
if (x11_error):
|
||||
print("xcursor not found.. x11 disabled.")
|
||||
return False
|
||||
|
||||
|
||||
x11_error=os.system("pkg-config xinerama --modversion > /dev/null ")
|
||||
if (x11_error):
|
||||
print("xinerama not found.. x11 disabled.")
|
||||
@ -47,7 +47,7 @@ def can_build():
|
||||
|
||||
|
||||
return True # X11 enabled
|
||||
|
||||
|
||||
def get_opts():
|
||||
|
||||
return [
|
||||
@ -60,7 +60,7 @@ def get_opts():
|
||||
('new_wm_api', 'Use experimental window management API','no'),
|
||||
('debug_release', 'Add debug symbols to release version','no'),
|
||||
]
|
||||
|
||||
|
||||
def get_flags():
|
||||
|
||||
return [
|
||||
@ -68,7 +68,7 @@ def get_flags():
|
||||
("openssl", "yes"),
|
||||
#("theora","no"),
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
||||
def configure(env):
|
||||
|
||||
Reference in New Issue
Block a user