diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/osd/sdl.lua | 15 | ||||
-rw-r--r-- | scripts/src/osd/sdl_cfg.lua | 11 |
2 files changed, 0 insertions, 26 deletions
diff --git a/scripts/src/osd/sdl.lua b/scripts/src/osd/sdl.lua index cc31fa52008..3115c4d644f 100644 --- a/scripts/src/osd/sdl.lua +++ b/scripts/src/osd/sdl.lua @@ -37,12 +37,6 @@ function maintargetosdoptions(_target,_subtarget) end end - if _OPTIONS["USE_WAYLAND"]=="1" then - links { - "wayland-egl" - } - end - if _OPTIONS["NO_USE_XINPUT"]~="1" then links { "Xext", @@ -148,15 +142,6 @@ if not _OPTIONS["NO_X11"] then end newoption { - trigger = "USE_WAYLAND", - description = "Use Wayland", - allowed = { - { "0", "Do not use Wayland (use XWayland or X11)" }, - { "1", "Use Wayland" }, - }, -} - -newoption { trigger = "NO_USE_XINPUT", description = "Disable use of Xinput", allowed = { diff --git a/scripts/src/osd/sdl_cfg.lua b/scripts/src/osd/sdl_cfg.lua index 10dde2d511e..f3a970c4ad4 100644 --- a/scripts/src/osd/sdl_cfg.lua +++ b/scripts/src/osd/sdl_cfg.lua @@ -50,17 +50,6 @@ else } end -if _OPTIONS["USE_WAYLAND"]=="1" then - defines { - "SDLMAME_USE_WAYLAND", - } - if _OPTIONS["targetos"]=="linux" then - buildoptions { - backtick(pkgconfigcmd() .. " --cflags wayland-egl"), - } - end -end - if _OPTIONS["NO_USE_XINPUT"]=="1" then defines { "USE_XINPUT=0", |