From: Alexander Traud Date: Fri, 10 Apr 2020 13:13:34 +0000 (+0200) Subject: pjproject_bundled: Repair ./configure --with-ssl without ARG. X-Git-Tag: 16.10.0-rc1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e02290ed4f5e40f20997f75b2ad955f213d9131f;p=thirdparty%2Fasterisk.git pjproject_bundled: Repair ./configure --with-ssl without ARG. ASTERISK-28758 Reported by: Patrick Wakano Reported by: Dmitriy Serov Change-Id: Ifb6b85c559d116739af00bc48d1f547caa85efac --- diff --git a/configure b/configure index 72c41c2b08..33376a6229 100755 --- a/configure +++ b/configure @@ -9241,9 +9241,9 @@ $as_echo "configuring" >&6; } PJPROJECT_CONFIGURE_OPTS+=" --disable-ssl" ;; y|ye|yes) - # This is the default value in PJProject and means "autodetect". + # Not to mention SSL is the default in PJProject and means "autodetect". # In Asterisk, "./configure --with-ssl" means "must be present". - PJPROJECT_CONFIGURE_OPTS+=" --enable-ssl" + PJPROJECT_CONFIGURE_OPTS+="" ;; *) PJPROJECT_CONFIGURE_OPTS+=" --with-ssl=${with_ssl}" diff --git a/third-party/pjproject/configure.m4 b/third-party/pjproject/configure.m4 index 32cf56dd54..81a6559817 100644 --- a/third-party/pjproject/configure.m4 +++ b/third-party/pjproject/configure.m4 @@ -62,9 +62,9 @@ AC_DEFUN([_PJPROJECT_CONFIGURE], PJPROJECT_CONFIGURE_OPTS+=" --disable-ssl" ;; y|ye|yes) - # This is the default value in PJProject and means "autodetect". + # Not to mention SSL is the default in PJProject and means "autodetect". # In Asterisk, "./configure --with-ssl" means "must be present". - PJPROJECT_CONFIGURE_OPTS+=" --enable-ssl" + PJPROJECT_CONFIGURE_OPTS+="" ;; *) PJPROJECT_CONFIGURE_OPTS+=" --with-ssl=${with_ssl}"