commit 861d252ed56ec07df654e064d1a443e782f312e0
parent 7f28cb410dd93a0a4cd924254b113282bfe784b4
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Sat, 15 Jun 2024 12:57:58 +0200
mhd_str.c: synced macros names with recent configure changes
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git 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