libmicrohttpd

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

commit 93291187f4da4d0041b278a7638e69e8ecbadafc
parent 9826b05efe1a67f70319a2997c2f47f06554b045
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Thu,  1 Apr 2021 20:58:55 +0300

configure: assume that systems assert() is functional if available

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

diff --git a/configure.ac b/configure.ac @@ -2352,20 +2352,8 @@ AS_VAR_IF([[enable_asserts]], [["yes"]], [[mhd_cv_sys_assert_avail='no']]) ] ) - AS_VAR_IF([[mhd_cv_sys_assert_avail]], [["yes"]], - [ - AC_CACHE_CHECK([[whether system assert() is usable]], [mhd_cv_sys_assert_use], - [ - AC_RUN_IFELSE([AC_LANG_SOURCE([[$mhd_assert_test_prg]])], - [[mhd_cv_sys_assert_use='no']], - [[mhd_cv_sys_assert_use='yes']], - [[mhd_cv_sys_assert_use='assuming yes']]) - ] - ) - AS_VAR_IF([[mhd_cv_sys_assert_use]], [["no"]], [], - [AC_DEFINE([[HAVE_ASSERT]], [[1]], [Define if you have usable assert() and assert.h])]) - ] - ) + AS_VAR_IF([[mhd_cv_sys_assert_avail]], [["no"]], [], + [AC_DEFINE([[HAVE_ASSERT]], [[1]], [Define if you have usable assert() and assert.h])]) AS_UNSET([mhd_assert_test_prg]) ], [AC_DEFINE([[NDEBUG]], [[1]], [Define to disable usage of debug asserts.])]