diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 21:19:17 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 21:19:17 +0200 |
commit | 66a35bd6c22fc68b685fd90f0cc80a32ffc1e364 (patch) | |
tree | 72c4389fc91116445f501e8ec6a4901cb70f0abf /NEWS | |
parent | c9fb61809611f51363db1779e02cea3faf8146d4 (diff) | |
download | fetchmail-66a35bd6c22fc68b685fd90f0cc80a32ffc1e364.tar.gz fetchmail-66a35bd6c22fc68b685fd90f0cc80a32ffc1e364.tar.bz2 fetchmail-66a35bd6c22fc68b685fd90f0cc80a32ffc1e364.zip |
Remove broken AC_CHECK_DECLS(getenv).
We were testing #ifndef HAVE_DECL_GETENV, which was always false.
Thus, it is safe to assume that the test never triggered, and
the entire #ifndef...#endif block can be removed.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -91,6 +91,12 @@ fetchmail-6.4.3 (WIP) with OpenSSL lacks TLS v1.3 support. * If the trust anchor is missing, fetchmail refers the user to README.SSL. +## INTERNAL CHANGES: +* The AC_DECLS(getenv) check was removed, its only user was broken and not + accounting for that AC_DECLS always defines HAVE_DECL_... to 0 or 1, so + fetchmail never declared a missing getenv() symbol (it was testing with + #ifdef). Remove the backup declaration. getenv is mandated by SUSv2 anyways. + fetchmail-6.4.2 (released 2020-02-14, 27473 LoC): ## BREAKING CHANGES: |