mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-16 09:52:24 +00:00
BuildSystem: In POSIX sh, == in place of = is undefined.
ASTERISK-29724 Change-Id: I59aa0e52effdc16992f3a736ccf73430a6ef135b
This commit is contained in:
committed by
Friendly Automation
parent
a109b5aee0
commit
b8db1daec6
6
configure
vendored
6
configure
vendored
@@ -9126,7 +9126,7 @@ if test "${with_pjproject_bundled+set}" = set; then :
|
||||
fi
|
||||
|
||||
|
||||
if test "${with_pjproject}" == "no" || test "${with_pjproject}" == "n" ; then
|
||||
if test "${with_pjproject}" = "no" || test "${with_pjproject}" = "n" ; then
|
||||
PJPROJECT_BUNDLED=no
|
||||
fi
|
||||
|
||||
@@ -9215,7 +9215,7 @@ PBX_OPENSSL_BIO_METHOD=0
|
||||
# If neither --without-ssl (PBX_OPENSSL=-1) nor --without-crypto (PBX_CRYPTO=-1)
|
||||
# and there were no directories atdded to --with-ssl and --with-crypto, and
|
||||
# pkg-config is installed (which is should be by install_prereq).
|
||||
if test "x$PKG_CONFIG" != "x" -a $PBX_OPENSSL -ge 0 -a $PBX_CRYPTO -ge 0 -a "x$OPENSSL_DIR" == "x" ; then
|
||||
if test "x$PKG_CONFIG" != "x" -a $PBX_OPENSSL -ge 0 -a $PBX_CRYPTO -ge 0 -a "x$OPENSSL_DIR" = "x" ; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking OPENSSL with pkg-config" >&5
|
||||
$as_echo "$as_me: checking OPENSSL with pkg-config" >&6;}
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system openssl > 1.1.0" >&5
|
||||
@@ -14914,7 +14914,7 @@ fi
|
||||
|
||||
|
||||
|
||||
if test "${PERMANENT_DLOPEN}" == "yes"; then
|
||||
if test "${PERMANENT_DLOPEN}" = "yes"; then
|
||||
|
||||
$as_echo "#define HAVE_PERMANENT_DLOPEN 1" >>confdefs.h
|
||||
|
||||
|
Reference in New Issue
Block a user