]> granicus.if.org Git - curl/commit
configure: conditionally enable pedantic-errors
authorMarcel Raad <Marcel.Raad@teamviewer.com>
Mon, 9 Jul 2018 16:38:23 +0000 (18:38 +0200)
committerMarcel Raad <Marcel.Raad@teamviewer.com>
Tue, 21 Aug 2018 16:53:44 +0000 (18:53 +0200)
commitd5c0351055d5709da8f3e16c91348092fdb481aa
tree1e8d54641e57622998b49c3972a6191bc420b42d
parenta829c4b25e2197d60afacefe3c868a974c3cd125
configure: conditionally enable pedantic-errors

Enable pedantic-errors for GCC >= 5 with --enable-werror. Before GCC 5,
pedantic-errors was synonymous to -Werror=pedantic [0], which is still
the case for clang [1]. With GCC 5, it became complementary [2].

Also fix a resulting error in acinclude.m4 as main's return type was
missing, which is illegal in C99.

[0] https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Warning-Options.html
[1] https://clang.llvm.org/docs/UsersManual.html#options-to-control-error-and-warning-messages
[2] https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/Warning-Options.html

Closes https://github.com/curl/curl/pull/2747
acinclude.m4
configure.ac