mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 03:04:19 +00:00
Merge "BuildSystem: Avoid == for comparison in ./configure."
This commit is contained in:
2
configure
vendored
2
configure
vendored
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user