Disable error on warning because of possible ffmpeg deprecated warning

This commit is contained in:
dec05eba 2023-05-17 19:30:30 +02:00
parent cfec0ef728
commit 41b77cc84e
3 changed files with 2 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -e #!/bin/sh -e
opts="-O2 -g0 -DNDEBUG -Wall -Wextra -Werror -s" opts="-O2 -g0 -DNDEBUG -Wall -Wextra -s"
[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra -Werror"; [ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra";
build_gsr_kms_server() { build_gsr_kms_server() {
dependencies="libdrm" dependencies="libdrm"

View File

@ -4,8 +4,5 @@ type = "executable"
version = "1.0.0" version = "1.0.0"
platforms = ["posix"] platforms = ["posix"]
[config]
error_on_warning = "true"
[dependencies] [dependencies]
libdrm = ">=2" libdrm = ">=2"

View File

@ -6,7 +6,6 @@ platforms = ["posix"]
[config] [config]
ignore_dirs = ["kms/server"] ignore_dirs = ["kms/server"]
error_on_warning = "true"
[dependencies] [dependencies]
libavcodec = ">=58" libavcodec = ">=58"