diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-05-17 19:30:30 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-05-17 19:30:30 +0200 |
commit | 41b77cc84e20b858db468e04c0d3ced69134d214 (patch) | |
tree | a3c18edf04cae101a144a9e89d74174afd015413 | |
parent | cfec0ef728b63f5141e7f4c87c32d659962feded (diff) |
Disable error on warning because of possible ffmpeg deprecated warning
-rwxr-xr-x | build.sh | 4 | ||||
-rw-r--r-- | kms/server/project.conf | 3 | ||||
-rw-r--r-- | project.conf | 1 |
3 files changed, 2 insertions, 6 deletions
@@ -1,7 +1,7 @@ #!/bin/sh -e -opts="-O2 -g0 -DNDEBUG -Wall -Wextra -Werror -s" -[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra -Werror"; +opts="-O2 -g0 -DNDEBUG -Wall -Wextra -s" +[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra"; build_gsr_kms_server() { dependencies="libdrm" diff --git a/kms/server/project.conf b/kms/server/project.conf index 26a1947..cf863c1 100644 --- a/kms/server/project.conf +++ b/kms/server/project.conf @@ -4,8 +4,5 @@ type = "executable" version = "1.0.0" platforms = ["posix"] -[config] -error_on_warning = "true" - [dependencies] libdrm = ">=2" diff --git a/project.conf b/project.conf index e517709..ee1d00b 100644 --- a/project.conf +++ b/project.conf @@ -6,7 +6,6 @@ platforms = ["posix"] [config] ignore_dirs = ["kms/server"] -error_on_warning = "true" [dependencies] libavcodec = ">=58" |