libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 4e34b6a43ad46421a73f7ab43c04d5447f4a5cc0
parent 3c9f681e667f675073d8424a9984fe17a50de16b
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun, 17 Apr 2022 15:23:52 +0300

configure: minor fix

Added quoting for string values.

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

diff --git a/configure.ac b/configure.ac @@ -172,8 +172,7 @@ AS_VAR_IF([enable_build_type],["debug"], AS_CASE([${enable_build_type}],[release|release-*], [ # All release types CFLAGS="${user_CFLAGS}" - AS_VAR_IF([enable_build_type], - [release-compact], + AS_VAR_IF([enable_build_type],["release-compact"], [ AC_CHECK_DECL([MHD_FAVOR_SMALL_CODE],[], [AC_CHECK_DECL([MHD_FAVOR_FAST_CODE],[], @@ -197,8 +196,7 @@ AS_CASE([${enable_build_type}],[release|release-*], ] ) - AS_VAR_IF([enable_build_type], - [release-hardened], + AS_VAR_IF([enable_build_type],["release-hardened"], [ MHD_CHECK_ADD_CC_CFLAGS([-Wformat-security -Wstack-protector], [CFLAGS_ac]) ]