From 4cbcc855382a06088e2f016f62cafdbcb7e40665 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 20 Mar 2022 00:40:44 +0000 Subject: gentoo resync : 20.03.2022 --- .../files/libimagequant-2.12.2-fix-pkgconfig.patch | 21 --------------------- .../libimagequant-2.14.0-fix-openmp-pragma.patch | 18 ------------------ 2 files changed, 39 deletions(-) delete mode 100644 media-gfx/libimagequant/files/libimagequant-2.12.2-fix-pkgconfig.patch delete mode 100644 media-gfx/libimagequant/files/libimagequant-2.14.0-fix-openmp-pragma.patch (limited to 'media-gfx/libimagequant/files') diff --git a/media-gfx/libimagequant/files/libimagequant-2.12.2-fix-pkgconfig.patch b/media-gfx/libimagequant/files/libimagequant-2.12.2-fix-pkgconfig.patch deleted file mode 100644 index ce9cc2b8c99f..000000000000 --- a/media-gfx/libimagequant/files/libimagequant-2.12.2-fix-pkgconfig.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -133,7 +133,7 @@ ifeq ($(filter %clean %distclean, $(MAKECMDGOALS)), ) - endif - - $(PKGCONFIG): config.mk -- sed 's|PREFIX|$(PREFIX)|;s|VERSION|$(VERSION)|' < imagequant.pc.in > $(PKGCONFIG) -+ sed 's|PREFIX|$(PREFIX)|;s|VERSION|$(VERSION)|;s|LIBDIR|$(LIBDIR)|' < imagequant.pc.in > $(PKGCONFIG) - - .PHONY: all static shared clean dist distclean dll java cargo - .DELETE_ON_ERROR: ---- a/imagequant.pc.in -+++ b/imagequant.pc.in -@@ -1,6 +1,6 @@ - prefix=PREFIX - includedir=${prefix}/include --libdir=${prefix}/lib -+libdir=LIBDIR - - Name: imagequant - Description: Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images. diff --git a/media-gfx/libimagequant/files/libimagequant-2.14.0-fix-openmp-pragma.patch b/media-gfx/libimagequant/files/libimagequant-2.14.0-fix-openmp-pragma.patch deleted file mode 100644 index f355453ece6c..000000000000 --- a/media-gfx/libimagequant/files/libimagequant-2.14.0-fix-openmp-pragma.patch +++ /dev/null @@ -1,18 +0,0 @@ -From 44525d34b738f733a81037286ece603ca0fdcf10 Mon Sep 17 00:00:00 2001 -From: Kornel -Date: Wed, 27 Jan 2021 17:36:33 +0000 -Subject: [PATCH] Update OMP pragma ---- a/libimagequant.c -+++ b/libimagequant.c -@@ -1279,10 +1279,7 @@ LIQ_NONNULL static float remap_to_palette(liq_image *const input_image, unsigned - - #if __GNUC__ >= 9 || __clang__ - #pragma omp parallel for if (rows*cols > 3000) \ -- schedule(static) default(none) shared(acolormap,average_color,cols,input_image,map,n,output_pixels,rows,transparent_index) reduction(+:remapping_error) --#else -- #pragma omp parallel for if (rows*cols > 3000) \ -- schedule(static) default(none) shared(acolormap) shared(average_color) reduction(+:remapping_error) -+ schedule(static) default(none) shared(background,acolormap,average_color,cols,input_image,map,n,output_pixels,rows,transparent_index) reduction(+:remapping_error) - #endif - for(int row = 0; row < rows; ++row) { - const f_pixel *const row_pixels = liq_image_get_row_f(input_image, row); -- cgit v1.2.3