Fix yes/no for b64_ntop check.

This commit is contained in:
Nicholas Marriott 2021-01-17 18:19:50 +00:00
parent 24c15eda79
commit c6bcf3dba5

View File

@ -324,6 +324,7 @@ AC_TRY_LINK(
found_b64_ntop=yes, found_b64_ntop=yes,
found_b64_ntop=no found_b64_ntop=no
) )
AC_MSG_RESULT($found_b64_ntop)
OLD_LIBS="$LIBS" OLD_LIBS="$LIBS"
if test "x$found_b64_ntop" = xno; then if test "x$found_b64_ntop" = xno; then
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
@ -339,6 +340,7 @@ if test "x$found_b64_ntop" = xno; then
found_b64_ntop=yes, found_b64_ntop=yes,
found_b64_ntop=no found_b64_ntop=no
) )
AC_MSG_RESULT($found_b64_ntop)
fi fi
if test "x$found_b64_ntop" = xno; then if test "x$found_b64_ntop" = xno; then
AC_MSG_CHECKING(for b64_ntop with -lnetwork) AC_MSG_CHECKING(for b64_ntop with -lnetwork)
@ -353,14 +355,13 @@ if test "x$found_b64_ntop" = xno; then
found_b64_ntop=yes, found_b64_ntop=yes,
found_b64_ntop=no found_b64_ntop=no
) )
AC_MSG_RESULT($found_b64_ntop)
fi fi
if test "x$found_b64_ntop" = xyes; then if test "x$found_b64_ntop" = xyes; then
AC_DEFINE(HAVE_B64_NTOP) AC_DEFINE(HAVE_B64_NTOP)
AC_MSG_RESULT(yes)
else else
LIBS="$OLD_LIBS" LIBS="$OLD_LIBS"
AC_LIBOBJ(base64) AC_LIBOBJ(base64)
AC_MSG_RESULT(no)
fi fi
# Look for networking libraries. # Look for networking libraries.