libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit c986f16bf4dee99859fa6849316112a014567d4b
parent 3d9c3a385a0b9b903d53605a1658b44937c54754
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Mon, 13 Apr 2026 14:11:37 +0200

configure: corrected comments

Diffstat:
Mconfigure.ac | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -142,16 +142,14 @@ AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET m4_version_prereq([2.70], - [ -# Find C compiler and compiler options to support -# the latest C standard (C11). Fallback to C99 and C89 -# if later C versions are not supported. + [dnl Autoconf 2.70 or later +# Find C compiler and compiler options to support C11 (C23 with autoconf >=2.73). +# Fallback to earlier C versions if the latest checked version is not supported. AC_PROG_CC ], - [ -# Find C compiler and compiler options to support -# the latest C standard (C99). Fallback to C89 -# if later C versions are not supported. + [dnl Autoconf before 2.70 +# Find C compiler and compiler options to support C99. +# Fallback to C89 if later C versions are not supported. AC_PROG_CC_STDC ] )