1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2025-02-20 21:54:16 +01:00

don't warn about to long strings

This commit is contained in:
Klas Lindfors 2015-09-11 13:56:03 +02:00
parent 70f27b98a2
commit 6f6a7b20fc

View File

@ -149,6 +149,7 @@ if test "$gl_gcc_warnings" = yes; then
nw="$nw -Wtraditional-conversion" # Too many warnings for now
nw="$nw -Wconversion" # Too many warnings for now
nw="$nw -Wsuggest-attribute=pure" # Is it worth using attributes?
nw="$nw -Woverlength-strings" # Don't warn on long strings
gl_MANYWARN_ALL_GCC([ws])
gl_MANYWARN_COMPLEMENT(ws, [$ws], [$nw])