diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-01-17 18:19:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-01-17 18:20:15 +0000 |
commit | c6bcf3dba52fe0f5e161a9a7cedaae27c7a30845 (patch) | |
tree | 6d1a20a169e16b61a5ac876eb1ac87163e54e671 | |
parent | 24c15eda793022f834fc28079f95ca71e2e2215c (diff) | |
download | rtmux-c6bcf3dba52fe0f5e161a9a7cedaae27c7a30845.tar.gz rtmux-c6bcf3dba52fe0f5e161a9a7cedaae27c7a30845.tar.bz2 rtmux-c6bcf3dba52fe0f5e161a9a7cedaae27c7a30845.zip |
Fix yes/no for b64_ntop check.
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1bd91eb4..e70e3147 100644 --- a/configure.ac +++ b/configure.ac @@ -324,6 +324,7 @@ AC_TRY_LINK( found_b64_ntop=yes, found_b64_ntop=no ) +AC_MSG_RESULT($found_b64_ntop) OLD_LIBS="$LIBS" if test "x$found_b64_ntop" = xno; then AC_MSG_RESULT(no) @@ -339,6 +340,7 @@ if test "x$found_b64_ntop" = xno; then found_b64_ntop=yes, found_b64_ntop=no ) + AC_MSG_RESULT($found_b64_ntop) fi if test "x$found_b64_ntop" = xno; then 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=no ) + AC_MSG_RESULT($found_b64_ntop) fi if test "x$found_b64_ntop" = xyes; then AC_DEFINE(HAVE_B64_NTOP) - AC_MSG_RESULT(yes) else LIBS="$OLD_LIBS" AC_LIBOBJ(base64) - AC_MSG_RESULT(no) fi # Look for networking libraries. |