From 2509906595e11b16b5d9a56d46efbf6e100391f6 Mon Sep 17 00:00:00 2001 From: Udoy Soumik Date: Fri, 25 Jun 2021 03:47:58 +0600 Subject: [PATCH 1/2] Bump libgcrypt version to libgcrypt-1.9.3 --- scripts/build-libs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-libs.sh b/scripts/build-libs.sh index 29e0efe..2abad0a 100755 --- a/scripts/build-libs.sh +++ b/scripts/build-libs.sh @@ -56,8 +56,8 @@ fi # Versions export MIN_OSX_VERSION="10.10" -export LIBGPG_ERROR_VERSION="1.27" -export LIBGCRYPT_VERSION="1.8.1" +export LIBGPG_ERROR_VERSION="1.41" +export LIBGCRYPT_VERSION="1.9.3" export LIBOTR_VERSION="4.1.1" BUILT_ARCHS=() From d4a1da4905a89e4b63552f8d674a02c9540a993f Mon Sep 17 00:00:00 2001 From: Udoy Soumik Date: Fri, 25 Jun 2021 03:49:55 +0600 Subject: [PATCH 2/2] iOS/MacOS getentropy error and AppStore submission bug fix --- scripts/build-gcrypt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-gcrypt.sh b/scripts/build-gcrypt.sh index 68f1425..f0c73ab 100755 --- a/scripts/build-gcrypt.sh +++ b/scripts/build-gcrypt.sh @@ -38,7 +38,7 @@ pushd "libgcrypt-${LIBGCRYPT_VERSION}" # Without setting the path, libgcrypt cannot find libgpg-error-config for some reason PATH="${PATH}:${ARCH_BUILT_BIN_DIR}" - ./configure --disable-shared --enable-static --with-pic --enable-threads=posix ${EXTRA_CONFIG} \ + ./configure --disable-shared --enable-static --with-pic --enable-random=unix --enable-threads=posix ${EXTRA_CONFIG} \ --with-sysroot="${SDK_PATH}" \ --with-libgpg-error-prefix="${ARCH_BUILT_DIR}" \ --prefix="${ROOTDIR}" \