diff options
| author | Christoph Reiter <creiter@src.gnome.org> | 2017-01-23 20:26:05 (GMT) |
|---|---|---|
| committer | Christoph Reiter <creiter@src.gnome.org> | 2017-01-23 20:26:05 (GMT) |
| commit | d005df9645fd5fb2f19bd09384355f45591f1e58 (patch) | |
| tree | 6454fcfdc1b83f60edeca7af6d6ba374b1dfa535 | |
| parent | 6695931a0dfb7d9db9ea14a128108342c3d0be89 (diff) | |
| download | pygobject-d005df9645fd5fb2f19bd09384355f45591f1e58.zip pygobject-d005df9645fd5fb2f19bd09384355f45591f1e58.tar.xz | |
Disable -Werror=missing-prototypes
https://bugzilla.gnome.org/show_bug.cgi?id=760056
added some code triggering "missing-prototype" which we by default
treat as an error. This disables that specific error by default.
https://bugzilla.gnome.org/show_bug.cgi?id=777534
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c8d95c7..8e225f4 100644 --- a/configure.ac +++ b/configure.ac @@ -228,7 +228,7 @@ AC_SUBST(INTROSPECTION_SCANNER) AC_SUBST(INTROSPECTION_COMPILER) # compiler warnings, errors, required cflags, and code coverage support -GNOME_COMPILE_WARNINGS([maximum]) +GNOME_COMPILE_WARNINGS([maximum], [-Wno-error=missing-prototypes]) AC_MSG_CHECKING(for Gnome code coverage support) m4_ifdef([GNOME_CODE_COVERAGE], [AC_MSG_RESULT(yes) |