mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
Fix the following warnings: - -Wimplicit-int (fatal with Clang 16) - -Wimplicit-function-declaration (fatal with Clang 16) - -Wincompatible-function-pointer-types (fatal with Clang 16) - -Wint-conversion (fatal with Clang 15) - Old style prototypes (K&R, removed from C23) These warnings-now-error led to misconfigurations and failure to build OpenLDAP, as the tests used during configure caused the wrong results to be emitted. For more information, see LWN.net [0] or LLVM's Discourse [1], the Gentoo wiki [2], or the (new) c-std-porting mailing list [3]. [0] https://lwn.net/Articles/913505/ [1] https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213 [2] https://wiki.gentoo.org/wiki/Modern_C_porting [3] hosted at lists.linux.dev. Bug: https://bugs.gentoo.org/871288 Signed-off-by: Sam James <sam@gentoo.org> |
||
|---|---|---|
| .. | ||
| config.guess | ||
| config.sub | ||
| dir.mk | ||
| info.mk | ||
| lib-shared.mk | ||
| lib-static.mk | ||
| lib.mk | ||
| libtool.m4 | ||
| LICENSE-2.0.1 | ||
| ltmain.sh | ||
| ltoptions.m4 | ||
| ltsugar.m4 | ||
| ltversion.m4 | ||
| lt~obsolete.m4 | ||
| man.mk | ||
| mkdep | ||
| mkdep.aix | ||
| mkrelease | ||
| mkvers.bat | ||
| mkversion | ||
| mod.mk | ||
| openldap.m4 | ||
| README | ||
| rules.mk | ||
| shtool | ||
| srv.mk | ||
| top.mk | ||
| version.h | ||
| version.sh | ||
| version.var | ||
The OpenLDAP build environment relies on non-standard versions of configuration tools: Autoconf 2.13.1 Automake 1.4a Libtool 1.4.3 The autoconf/automake releases used are available at: ftp://ftp.openldap.org/pub/tools/ The libtool release used is available from: ftp://ftp.gnu.org/ but with ltmain.sh replaced with versions found in this directory.