mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #106175 from akien-mga/linux-build-no-dbus
Linux: Fix build with `dbus=no` or `threads=no`
This commit is contained in:
commit
c596d93478
3 changed files with 8 additions and 4 deletions
|
@ -336,7 +336,7 @@ def configure(env: "SConsEnvironment"):
|
|||
else:
|
||||
env.Append(CPPDEFINES=["PULSEAUDIO_ENABLED", "_REENTRANT"])
|
||||
|
||||
if env["dbus"]:
|
||||
if env["dbus"] and env["threads"]: # D-Bus functionality expects threads.
|
||||
if not env["use_sowrap"]:
|
||||
if os.system("pkg-config --exists dbus-1") == 0: # 0 means found
|
||||
env.ParseConfig("pkg-config dbus-1 --cflags --libs")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue