From 861d252ed56ec07df654e064d1a443e782f312e0 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sat, 15 Jun 2024 12:57:58 +0200 Subject: [PATCH] mhd_str.c: synced macros names with recent configure changes --- src/microhttpd/mhd_str.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c index 88933258..6379a3eb 100644 --- a/src/microhttpd/mhd_str.c +++ b/src/microhttpd/mhd_str.c @@ -42,8 +42,8 @@ functions instead. This may give more flexibility for size optimizations. */ #define _MHD_static_inline static -#ifndef INLINE_FUNC -#define INLINE_FUNC 1 +#ifndef HAVE_INLINE_FUNCS +#define HAVE_INLINE_FUNCS 1 #endif /* !INLINE_FUNC */ #endif /* MHD_FAVOR_SMALL_CODE */ @@ -52,7 +52,7 @@ * standards. Not affected by current locale settings. */ -#ifdef INLINE_FUNC +#ifdef HAVE_INLINE_FUNCS #if 0 /* Disable unused functions. */ /** @@ -668,7 +668,7 @@ charsequalcaseless (const char c1, const char c2) (((c1) - 'A' + 'a') == (c2)) : \ (((c1) == ((c2) - 'A' + 'a')) && isasciiupper (c2))) ) -#endif /* !INLINE_FUNC */ +#endif /* !HAVE_INLINE_FUNCS */ #ifndef MHD_FAVOR_SMALL_CODE