diff options
Diffstat (limited to 'scripts/src')
-rwxr-xr-x | scripts/src/3rdparty.lua | 8 | ||||
-rw-r--r-- | scripts/src/osd/modules.lua | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index ad7932afdc2..b08e847a9ae 100755 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -29,14 +29,14 @@ project "expat" "HAVE_STDLIB_H", "HAVE_STRING_H", "PACKAGE=\"expat\"", - "PACKAGE_BUGREPORT=\"expat-bugs@libexpat.org\"", + "PACKAGE_BUGREPORT=\"https://github.com/libexpat/libexpat/issues\"", "PACKAGE_NAME=\"expat\"", - "PACKAGE_STRING=\"expat-2.2.10\"", + "PACKAGE_STRING=\"expat-2.7.1\"", "PACKAGE_TARNAME=\"expat\"", "PACKAGE_URL=\"\"", - "PACKAGE_VERSION=\"2.2.10\"", + "PACKAGE_VERSION=\"2.7.1\"", "STDC_HEADERS", - "VERSION=\"2.2.10\"", + "VERSION=\"2.7.1\"", "XML_CONTEXT_BYTES=1024", "XML_DTD", "XML_GE=1", diff --git a/scripts/src/osd/modules.lua b/scripts/src/osd/modules.lua index b532124302f..5b19ed4fc44 100644 --- a/scripts/src/osd/modules.lua +++ b/scripts/src/osd/modules.lua @@ -305,9 +305,11 @@ function osdmodulesbuild() } end - err = os.execute(pkgconfigcmd() .. " --exists libpipewire-0.3") - if not err then - _OPTIONS["NO_USE_PIPEWIRE"] = "1" + if _OPTIONS["NO_USE_PIPEWIRE"]=="0" then + err = os.execute(pkgconfigcmd() .. " --exists libpipewire-0.3") + if not err then + _OPTIONS["NO_USE_PIPEWIRE"] = "1" + end end if _OPTIONS["NO_USE_PIPEWIRE"]=="1" then @@ -320,7 +322,6 @@ function osdmodulesbuild() } end - if _OPTIONS["NO_USE_MIDI"]=="1" then defines { "NO_USE_MIDI", |