From 806e1c2a4751c031785b5769800c433777d98939 Mon Sep 17 00:00:00 2001 From: Taner Sener Date: Wed, 28 Sep 2022 09:16:16 +0100 Subject: [PATCH] enable openssl on 32 bit ios architectures --- scripts/apple/openssl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/apple/openssl.sh b/scripts/apple/openssl.sh index 1043c3d..cd8c5b8 100644 --- a/scripts/apple/openssl.sh +++ b/scripts/apple/openssl.sh @@ -1,9 +1,9 @@ #!/bin/bash -if [[ ${ARCH} == "i386" ]] || [[ ${ARCH} == "armv7"* ]] || [[ ${FFMPEG_KIT_BUILD_TYPE} == "tvos" ]]; then +if [[ ${FFMPEG_KIT_BUILD_TYPE} == "tvos" ]]; then - # openssl does not support 32-bit apple architectures and tvos yet - echo -e "ERROR: openssl is not supported on $ARCH architecture for $FFMPEG_KIT_BUILD_TYPE platform.\n" 1>>"${BASEDIR}"/build.log 2>&1 + # openssl does not support tvos yet + echo -e "ERROR: openssl is not supported on $FFMPEG_KIT_BUILD_TYPE platform.\n" 1>>"${BASEDIR}"/build.log 2>&1 return 200 fi