Changeset 6135393 in mod_gnutls


Ignore:
Timestamp:
Feb 19, 2017, 12:57:56 PM (6 years ago)
Author:
Thomas Klute <thomas2.klute@…>
Branches:
asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
Children:
b0e4ce6
Parents:
37beb92
Message:

Do not treat warnings about deprecated declarations as errors

GnuTLS has declared OpenPGP support as deprecated in version
3.5.9. Treating deprecation warnings as errors causes the build to
fail with this version, so exempt them from "-Werror" until OpenPGP
support is removed from mod_gnutls.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r37beb92 r6135393  
    6565STRICT_CFLAGS=""
    6666if test "$use_strict" != "no"; then
    67         STRICT_CFLAGS="-Wall -Werror -Wextra"
     67        STRICT_CFLAGS="-Wall -Werror -Wextra -Wno-error=deprecated-declarations"
    6868fi
    6969
Note: See TracChangeset for help on using the changeset viewer.