Skip to content
Snippets Groups Projects
Commit 7a77148d authored by Guillem Jover's avatar Guillem Jover
Browse files

build: Do not set have_libmd on the found branch in AC_SEARCH_LIBS

This also covers the case of found in the system libraries, which we
cover later anyway, so the assignment here is confusing.
parent 115e8e18
No related branches found
No related tags found
1 merge request!4Update crimson to version from bookworm
......@@ -16,7 +16,7 @@ AC_DEFUN([DPKG_LIB_MD], [
AS_IF([test "x$with_libmd" != "xno"], [
AC_CHECK_HEADERS([md5.h], [
dpkg_save_libmd_LIBS=$LIBS
AC_SEARCH_LIBS([MD5Init], [md], [have_libmd="yes"])
AC_SEARCH_LIBS([MD5Init], [md])
LIBS=$dpkg_save_libmd_LIBS
AS_IF([test "x$ac_cv_search_MD5Init" = "xnone required"], [
have_libmd="builtin"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment