ntp: Fix build with -std=gnu23

Backport a patch from openLDAP to fix the configure errors with clang-22 -std=gnu23
Fix another issue by dropping C89 signatures in favor of C99 function prototypes

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
Khem Raj
2026-04-13 19:14:03 -07:00
parent d13ec66639
commit b5d466f731
3 changed files with 136 additions and 0 deletions
@@ -0,0 +1,102 @@
From 58c160ce28328f9a75d41c283ee9b94c10d6ec62 Mon Sep 17 00:00:00 2001
From: Sam James <sam@gentoo.org>
Date: Thu, 9 Feb 2023 23:17:53 +0000
Subject: [PATCH] ITS#10011 build: fix compatibility with stricter C99
compilers
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
Upstream-Status: Pending
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
---
sntp/m4/openldap.m4 | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/sntp/m4/openldap.m4 b/sntp/m4/openldap.m4
index 49ffb87..2db6aa3 100644
--- a/sntp/m4/openldap.m4
+++ b/sntp/m4/openldap.m4
@@ -154,6 +154,7 @@ fi
if test $ol_cv_header_stdc = yes; then
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <ctype.h>
+#include <stdlib.h>
#ifndef HAVE_EBCDIC
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
@@ -610,8 +611,12 @@ AC_DEFUN([OL_PTHREAD_TEST_INCLUDES], [[
#define NULL (void*)0
#endif
+#ifdef __STDC__
+static void *task(void *p)
+#else
static void *task(p)
void *p;
+#endif
{
return (void *) (p == NULL);
}
@@ -667,9 +672,13 @@ AC_DEFUN([OL_PTHREAD_TEST_FUNCTION],[[
AC_DEFUN([OL_PTHREAD_TEST_PROGRAM], [
AC_LANG_SOURCE([OL_PTHREAD_TEST_INCLUDES
+#ifdef __STDC__
+int main(int argc, char **argv)
+#else
int main(argc, argv)
int argc;
char **argv;
+#endif
{
OL_PTHREAD_TEST_FUNCTION
}
@@ -791,7 +800,7 @@ AC_CACHE_CHECK([for compatible POSIX regex],ol_cv_c_posix_regex,[
#include <sys/types.h>
#include <regex.h>
static char *pattern, *string;
-main()
+int main(void)
{
int rc;
regex_t re;
@@ -818,7 +827,8 @@ AC_DEFUN([OL_C_UPPER_LOWER],
[AC_CACHE_CHECK([if toupper() requires islower()],ol_cv_c_upper_lower,[
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#include <ctype.h>
-main()
+#include <stdlib.h>
+int main(void)
{
if ('C' == toupper('C'))
exit(0);
@@ -873,7 +883,7 @@ AC_DEFUN([OL_NONPOSIX_STRERROR_R],
]])],[ol_cv_nonposix_strerror_r=yes],[ol_cv_nonposix_strerror_r=no])
else
AC_RUN_IFELSE([AC_LANG_SOURCE([[
- main() {
+ int main(void) {
char buf[100];
buf[0] = 0;
strerror_r( 1, buf, sizeof buf );
@@ -0,0 +1,32 @@
From cd54486bdced460c174fcb98680ad5ffe64f906a Mon Sep 17 00:00:00 2001
From: Khem Raj <khem.raj@oss.qualcomm.com>
Date: Mon, 13 Apr 2026 19:09:24 -0700
Subject: [PATCH] colcomp: sntp/libpkgver/colcomp.c: Convert K&R function
definition to ANSI C style
Replace old-style K&R function declaration with modern ANSI C prototype
syntax for colcomp(). Also remove trailing whitespace after return type.
Upstream-Status: Pending
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
---
sntp/libpkgver/colcomp.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/sntp/libpkgver/colcomp.c b/sntp/libpkgver/colcomp.c
index 4b151e3..29ecb3e 100644
--- a/sntp/libpkgver/colcomp.c
+++ b/sntp/libpkgver/colcomp.c
@@ -33,10 +33,8 @@
#endif
-int
-colcomp (s1, s2)
- register char *s1;
- register char *s2;
+int
+colcomp (register char *s1, register char *s2)
{
int hilo = 0; /* comparison value */
@@ -17,6 +17,8 @@ SRC_URI = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.g
file://0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch \
file://0001-sntp-Fix-types-in-check-for-pthread_detach.patch \
file://0001-include-fix-build-failure-with-glibc-2.43-_Generic-m.patch \
file://0001-ITS-10011-build-fix-compatibility-with-stricter-C99-.patch \
file://0001-colcomp-sntp-libpkgver-colcomp.c-Convert-K-R-functio.patch \
file://ntpd \
file://ntp.conf \
file://ntpd.service \