From 9c4a3332810bfce238aa80319e61c8585fd8dbcb Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Fri, 20 Dec 2024 12:41:27 +0100 Subject: [PATCH] Updated unused Makefile.am to fix bootstrap --- src/microhttpd/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am index 95d10ba5..bd3b5a6f 100644 --- a/src/microhttpd/Makefile.am +++ b/src/microhttpd/Makefile.am @@ -167,11 +167,11 @@ libmicrohttpd_la_SOURCES += \ postprocessor.c postprocessor.h endif -if HAVE_ANYAUTH +if MHD_SUPPORT_AUTH libmicrohttpd_la_SOURCES += \ gen_auth.c gen_auth.h endif -if ENABLE_DAUTH +if MHD_SUPPORT_AUTH_DIGEST libmicrohttpd_la_SOURCES += \ digestauth.c digestauth.h \ mhd_bithelpers.h mhd_byteorder.h mhd_align.h @@ -203,7 +203,7 @@ libmicrohttpd_la_SOURCES += \ endif endif -if MHD_ENABLE_BAUTH +if MHD_SUPPORT_AUTH_BASIC libmicrohttpd_la_SOURCES += \ basicauth.c basicauth.h endif @@ -294,19 +294,19 @@ endif endif endif -if HAVE_ANYAUTH +if MHD_SUPPORT_AUTH if HAVE_LOG_FUNCTIONALITY check_PROGRAMS += \ test_auth_parse endif endif -if ENABLE_DAUTH +if MHD_SUPPORT_AUTH_DIGEST check_PROGRAMS += \ test_str_quote \ test_dauth_userdigest \ test_dauth_userhash endif -if MHD_ENABLE_BAUTH +if MHD_SUPPORT_AUTH_BASIC check_PROGRAMS += \ test_str_base64 endif