diff --git a/build_ppa.sh b/build_ppa.sh index e87bef6..04751c0 100755 --- a/build_ppa.sh +++ b/build_ppa.sh @@ -2,7 +2,6 @@ patches=( #"fix-for-anon-file;../../../turnip-patches/fix-for-anon-file.patch;" #"fix-for-getprogname;../../../turnip-patches/fix-for-getprogname.patch;" - "fix-stringmapiterator;../../../turnip-patches/fix-stringmapiterator.patch;" #"mesa-2934e1f-termux-x11-dri3;../../../turnip-patches/mesa-2934e1f-termux-x11-dri3.patch;" #"zink_fixes;../../../turnip-patches/zink_fixes.patch;" "04-wsi-termux-x11-only-kgsl;../../../turnip-patches/04-wsi-termux-x11-only-kgsl_fixed.patch;" diff --git a/turnip-patches/fix-stringmapiterator.patch b/turnip-patches/fix-stringmapiterator.patch deleted file mode 100644 index 3eace9c..0000000 --- a/turnip-patches/fix-stringmapiterator.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp 2024-07-01 14:51:31.493037906 +0200 -+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp 2024-07-01 14:54:51.473698849 +0200 -@@ -332,7 +332,7 @@ - llvm::StringMap features; - llvm::sys::getHostCPUFeatures(features); - -- for (StringMapIterator f = features.begin(); -+ for (llvm::StringMapIterator f = features.begin(); - f != features.end(); - ++f) { - MAttrs.push_back(((*f).second ? "+" : "-") + (*f).first().str());