meson+autotools: get rid of spammy GCC warning -Wformat-truncation
authorEric Engestrom <eric.engestrom@intel.com>
Fri, 21 Sep 2018 10:42:38 +0000 (11:42 +0100)
committerEric Engestrom <eric.engestrom@intel.com>
Tue, 25 Sep 2018 10:40:08 +0000 (11:40 +0100)
commit97ae5a858d2a2da9144ea9793b67b360a3a7c5fa
tree3af184b4d0b3e3caa0d31cf6ee862bb6180b5146
parent1a37a80bf627daf234a139b22678005a6fb48d7e
meson+autotools: get rid of spammy GCC warning -Wformat-truncation

That warning fires every time a string function takes an argument that
could possibly be longer than its max output, which triggers all over
the place, especially when working with file paths ("what if every file
path is MAX_PATH long?" is what GCC is saying, which is really annoying
when we *know* that "/dev/dri/cardN" is not gonna be 4096 char long and
it's safe to store it in a 32-char array).

Anyway, we either add a ton of dead code all over the place to make GCC
happy, or we get rid of its spam. I chose the latter.

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
configure.ac
meson.build