From 01847ea285ff424bf1248e558fd7503aa86af6d4 Mon Sep 17 00:00:00 2001 From: Taner Sener Date: Sun, 11 Sep 2022 23:07:49 +0100 Subject: [PATCH] downgrade libxml2 version --- scripts/android/libxml2.sh | 2 +- scripts/apple/libxml2.sh | 2 +- scripts/source.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/android/libxml2.sh b/scripts/android/libxml2.sh index 2fc5afb..88ed05e 100755 --- a/scripts/android/libxml2.sh +++ b/scripts/android/libxml2.sh @@ -34,4 +34,4 @@ make -j$(get_cpu_count) || return 1 make install || return 1 # CREATE PACKAGE CONFIG MANUALLY -create_libxml2_package_config "2.10.2" || return 1 +create_libxml2_package_config "2.10.1" || return 1 diff --git a/scripts/apple/libxml2.sh b/scripts/apple/libxml2.sh index 9eb25b6..65f13fa 100755 --- a/scripts/apple/libxml2.sh +++ b/scripts/apple/libxml2.sh @@ -28,4 +28,4 @@ make -j$(get_cpu_count) || return 1 make install || return 1 # CREATE PACKAGE CONFIG MANUALLY -create_libxml2_package_config "2.10.2" || return 1 +create_libxml2_package_config "2.10.1" || return 1 diff --git a/scripts/source.sh b/scripts/source.sh index 562aae7..c94cb48 100755 --- a/scripts/source.sh +++ b/scripts/source.sh @@ -163,7 +163,7 @@ get_library_source() { ;; libxml2) SOURCE_REPO_URL="https://github.com/tanersener/libxml2" - SOURCE_ID="v2.10.2" + SOURCE_ID="v2.10.1" SOURCE_TYPE="TAG" ;; nettle)