mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-06-09 00:42:51 -04:00
Change --enable-pedantic to use -std=c99 and not -ansi (C90).
There's quite a bit of our code that fails compilation with "gcc -pedantic -ansi" and should not be changed - like, LZ4 using "long long" variables which C90 does not have. Be pragmatic. trac #616 Signed-off-by: Gert Doering <gert@greenie.muc.de> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <1465477232-25826-1-git-send-email-gert@greenie.muc.de> URL: http://article.gmane.org/gmane.network.openvpn.devel/11882 Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
46e4b6639a
commit
d16072cf17
1 changed files with 1 additions and 1 deletions
|
|
@ -1128,7 +1128,7 @@ fi
|
|||
if test "${enable_pedantic}" = "yes"; then
|
||||
enable_strict="yes"
|
||||
CFLAGS="${CFLAGS} -pedantic"
|
||||
test "${WIN32}" != "yes" && CFLAGS="${CFLAGS} -ansi"
|
||||
test "${WIN32}" != "yes" && CFLAGS="${CFLAGS} -std=c99"
|
||||
fi
|
||||
if test "${enable_strict}" = "yes"; then
|
||||
CFLAGS="${CFLAGS} -Wall -Wno-unused-parameter -Wno-unused-function"
|
||||
|
|
|
|||
Loading…
Reference in a new issue