Skip to content
Snippets Groups Projects
Commit 0072f756 authored by Joshua Colp's avatar Joshua Colp Committed by Gerrit Code Review
Browse files

Merge "BuildSystem: Avoid == for comparison in ./configure."

parents e21f1684 a9c02e48
No related branches found
No related tags found
No related merge requests found
......@@ -14105,7 +14105,7 @@ fi
 
 
 
if test "x$JANSSON_LIB" == "x"; then
if test "${PBX_JANSSON}" != 1; then
as_fn_error $? "*** JSON support not found (this typically means the libjansson development package is missing)" "$LINENO" 5
fi
 
......
......@@ -659,7 +659,7 @@ AC_SUBST(UUID_LIB)
# Find required JSON support.
AST_EXT_LIB_CHECK([JANSSON], [jansson], [json_dumps], [jansson.h])
if test "x$JANSSON_LIB" == "x"; then
if test "${PBX_JANSSON}" != 1; then
AC_MSG_ERROR([*** JSON support not found (this typically means the libjansson development package is missing)])
fi
......
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