aboutsummaryrefslogtreecommitdiff
path: root/platform/x11/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde2016-07-22 08:35:26 +0200
committerGitHub2016-07-22 08:35:26 +0200
commit82d18f4c1c468e58268f3d27db00c342205a1b60 (patch)
treeb710b725c3ae539ce12e06f277e0acb0424cadec /platform/x11/detect.py
parent51b03f0bf5af5cb6041b454a846061b5a7ff2d4c (diff)
parent503f9ab9d978254b88c74f8f8c1ee1c3abe2069e (diff)
downloadgodot-82d18f4c1c468e58268f3d27db00c342205a1b60.tar.gz
godot-82d18f4c1c468e58268f3d27db00c342205a1b60.tar.zst
godot-82d18f4c1c468e58268f3d27db00c342205a1b60.zip
Merge pull request #5845 from hurikhan/x11_cleanup
Code cleanup in platform/x11
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r--platform/x11/detect.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py
index 2be8b01dc..356de7b2b 100644
--- a/platform/x11/detect.py
+++ b/platform/x11/detect.py
@@ -62,7 +62,6 @@ def get_opts():
('use_leak_sanitizer','Use llvm compiler sanitize memory leaks','no'),
('pulseaudio','Detect & Use pulseaudio','yes'),
('udev','Use udev for gamepad connection callbacks','no'),
- ('new_wm_api', 'Use experimental window management API','no'),
('debug_release', 'Add debug symbols to release version','no'),
]
@@ -204,10 +203,6 @@ def configure(env):
env.Append( BUILDERS = { 'GLSL120GLES' : env.Builder(action = methods.build_gles2_headers, suffix = 'glsl.h',src_suffix = '.glsl') } )
#env.Append( BUILDERS = { 'HLSL9' : env.Builder(action = methods.build_hlsl_dx9_headers, suffix = 'hlsl.h',src_suffix = '.hlsl') } )
- if(env["new_wm_api"]=="yes"):
- env.Append(CPPFLAGS=['-DNEW_WM_API'])
- env.ParseConfig('pkg-config xinerama --cflags --libs')
-
if (env["use_static_cpp"]=="yes"):
env.Append(LINKFLAGS=['-static-libstdc++'])