diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-03 12:05:16 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-03 12:05:16 +0100 |
commit | e56b16f010e8432d361a1aa9e4d3be1c058402cc (patch) | |
tree | b81d151291bd77ae8c5a163095d26e8046fc8860 | |
parent | c5bfe1303a59b92eb94371fee6a1078dd08b7309 (diff) | |
parent | 3960c6b8f9fcf3d68ba6e623350100f44910977b (diff) |
Merge pull request #70677 from Riteo/x11-no-vulkan
Allow building X11 without Vulkan
-rw-r--r-- | platform/linuxbsd/detect.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 844b15e9fb..747dcbd76c 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -339,9 +339,6 @@ def configure(env: "Environment"): env.Prepend(CPPPATH=["#platform/linuxbsd"]) if env["x11"]: - if not env["vulkan"]: - print("Error: X11 support requires vulkan=yes") - env.Exit(255) env.Append(CPPDEFINES=["X11_ENABLED"]) env.Append(CPPDEFINES=["UNIX_ENABLED"]) |