From 5932ed33f735a4ae885e727049c3519e744ddc93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ola=20S=C3=B6der?= Date: Sat, 18 Oct 2025 14:30:10 +0000 Subject: [PATCH] patch 9.1.1867: HAVE_STDARG_H still defined MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: HAVE_STDARG_H still defined (after v7.4.1216) Solution: Remove all remaining occurrences of HAVE_STDARG_H (Ola Söder) closes: #18593 Signed-off-by: Ola Söder Signed-off-by: Christian Brabandt --- src/Make_ami.mak | 1 - src/if_python.c | 3 --- src/if_python3.c | 3 --- src/version.c | 2 ++ 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/Make_ami.mak b/src/Make_ami.mak index 05b731755e..e9d73df39f 100644 --- a/src/Make_ami.mak +++ b/src/Make_ami.mak @@ -13,7 +13,6 @@ CFLAGS = -c -O3 CFLAGS += \ -DNO_ARP \ -DUSE_TMPNAM \ - -DHAVE_STDARG_H \ -DHAVE_TGETENT \ -DHAVE_TERMCAP \ -DNEW_SHELLSIZE \ diff --git a/src/if_python.c b/src/if_python.c index ab79b9d9c8..9607258fd1 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -51,9 +51,6 @@ #ifdef HAVE_PUTENV # undef HAVE_PUTENV #endif -#ifdef HAVE_STDARG_H -# undef HAVE_STDARG_H // Python's config.h defines it as well. -#endif #ifdef _POSIX_C_SOURCE # undef _POSIX_C_SOURCE // pyconfig.h defines it as well. #endif diff --git a/src/if_python3.c b/src/if_python3.c index 69e72e663b..6ed457395f 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -57,9 +57,6 @@ #ifdef HAVE_PUTENV # undef HAVE_PUTENV #endif -#ifdef HAVE_STDARG_H -# undef HAVE_STDARG_H // Python's config.h defines it as well. -#endif #ifdef _POSIX_C_SOURCE // defined in feature.h # undef _POSIX_C_SOURCE #endif diff --git a/src/version.c b/src/version.c index f210971805..5f43d92b09 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1867, /**/ 1866, /**/