mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-04-07 12:31:49 +02:00
Disable speech-dispatcher, pulseaudio and udev wrapper builds, when library is not found.
This commit is contained in:
parent
7ffe8780fe
commit
cf33b907c7
@ -362,6 +362,7 @@ def configure(env):
|
|||||||
env.Append(CPPDEFINES=["PULSEAUDIO_ENABLED"])
|
env.Append(CPPDEFINES=["PULSEAUDIO_ENABLED"])
|
||||||
env.ParseConfig("pkg-config libpulse --cflags") # Only cflags, we dlopen the library.
|
env.ParseConfig("pkg-config libpulse --cflags") # Only cflags, we dlopen the library.
|
||||||
else:
|
else:
|
||||||
|
env["pulseaudio"] = False
|
||||||
print("Warning: PulseAudio development libraries not found. Disabling the PulseAudio audio driver.")
|
print("Warning: PulseAudio development libraries not found. Disabling the PulseAudio audio driver.")
|
||||||
|
|
||||||
if env["speechd"]:
|
if env["speechd"]:
|
||||||
@ -369,6 +370,7 @@ def configure(env):
|
|||||||
env.Append(CPPDEFINES=["SPEECHD_ENABLED"])
|
env.Append(CPPDEFINES=["SPEECHD_ENABLED"])
|
||||||
env.ParseConfig("pkg-config speech-dispatcher --cflags") # Only cflags, we dlopen the library.
|
env.ParseConfig("pkg-config speech-dispatcher --cflags") # Only cflags, we dlopen the library.
|
||||||
else:
|
else:
|
||||||
|
env["speechd"] = False
|
||||||
print("Warning: Speech Dispatcher development libraries not found. Disabling Text-to-Speech support.")
|
print("Warning: Speech Dispatcher development libraries not found. Disabling Text-to-Speech support.")
|
||||||
|
|
||||||
if platform.system() == "Linux":
|
if platform.system() == "Linux":
|
||||||
@ -378,6 +380,7 @@ def configure(env):
|
|||||||
env.Append(CPPDEFINES=["UDEV_ENABLED"])
|
env.Append(CPPDEFINES=["UDEV_ENABLED"])
|
||||||
env.ParseConfig("pkg-config libudev --cflags") # Only cflags, we dlopen the library.
|
env.ParseConfig("pkg-config libudev --cflags") # Only cflags, we dlopen the library.
|
||||||
else:
|
else:
|
||||||
|
env["udev"] = False
|
||||||
print("Warning: libudev development libraries not found. Disabling controller hotplugging support.")
|
print("Warning: libudev development libraries not found. Disabling controller hotplugging support.")
|
||||||
else:
|
else:
|
||||||
env["udev"] = False # Linux specific
|
env["udev"] = False # Linux specific
|
||||||
|
Loading…
Reference in New Issue
Block a user