2024-03-28 22:38 UTC

View Issue Details Jump to Notes ]
IDProjectCategoryView StatusLast Update
0002838Buildsystem[All Projects] Generalpublic2022-02-13 19:24
ReporterCameron Cawley 
Assigned To 
PrioritynormalSeverityminorReproducibilityhave not tried
StatusnewResolutionopen 
Summary0002838: [PATCH] Update libexpat and libwebp
DescriptionThe archive for libexpat v2.2.8 has been moved due to security vulnerabilities, and libwebp fails to build with newer autotools. Updating to the latest versions fix this.
TagsNo tags attached.
Fixed in CI build #
Reported in CI build #
Attached Files
  • patch file icon 0002-Update-libwebp-to-1.2.2.patch (2,774 bytes) 2022-02-13 19:23 -
    From 7c94f4d7930b64a616d3581e498c02b1ccabc4b2 Mon Sep 17 00:00:00 2001
    From: Cameron Cawley <ccawley2011@gmail.com>
    Date: Sun, 13 Feb 2022 19:06:04 +0000
    Subject: [PATCH 2/2] Update libwebp to 1.2.2
    
    ---
     sdk/Makefile                               |  3 ++-
     sdk/recipes/patches/libwebp/configure.ac.p |  6 +++---
     sdk/recipes/patches/libwebp/configure.p    | 11 -----------
     3 files changed, 5 insertions(+), 15 deletions(-)
     delete mode 100644 sdk/recipes/patches/libwebp/configure.p
    
    diff --git a/sdk/Makefile b/sdk/Makefile
    index 6f79bbe..6870546 100644
    --- a/sdk/Makefile
    +++ b/sdk/Makefile
    @@ -39,7 +39,7 @@ VERSION_LIBJPEG := 8d
     # libjpeg turbo have dropped autotools support VERSION_LIBJPEG_TURBO := 2.0.2
     VERSION_LIBJPEG_TURBO := 1.5.3
     # https://developers.google.com/speed/webp/
    -VERSION_LIBWEBP := 1.0.3
    +VERSION_LIBWEBP := 1.2.2
     # https://c-ares.haxx.se/
     VERSION_LIBCARES := 1.15.0
     # https://curl.haxx.se/
    @@ -457,6 +457,7 @@ $(BUILDSTEPS)/libwebp.d: $(BUILDSTEPS)/builddir.d $(BUILDSTEPS)/libwebp-src.d
     ifneq ($(realpath $(RECIPES)/patches/libwebp/$(TARGET)),)
     	for p in `ls $(RECIPES)/patches/libwebp/$(TARGET)/*.p` ; do $(PATCH) -d $(BUILDDIR)/libwebp/libwebp-$(VERSION_LIBWEBP) -p0 <$$p ; done
     endif
    +	cd $(BUILDDIR)/libwebp/libwebp-$(VERSION_LIBWEBP) && $(env) autoreconf -fi
     	cd $(BUILDDIR)/libwebp/libwebp-$(VERSION_LIBWEBP) && $(env) $(LIBWEBP_ENV) ./configure --prefix=$(GCCSDK_INSTALL_ENV) --target=$(TARGET) --host=$(TARGET) --disable-shared $(EXTRAARGS_LIBWEBP)
     	cd $(BUILDDIR)/libwebp/libwebp-$(VERSION_LIBWEBP) && $(env) make install
     	touch $@
    diff --git a/sdk/recipes/patches/libwebp/configure.ac.p b/sdk/recipes/patches/libwebp/configure.ac.p
    index 30150d1..c4a88d2 100644
    --- a/sdk/recipes/patches/libwebp/configure.ac.p
    +++ b/sdk/recipes/patches/libwebp/configure.ac.p
    @@ -1,6 +1,6 @@
    ---- configure.ac.orig	2019-07-04 20:32:37.000000000 +0100
    -+++ configure.ac	2019-08-26 01:10:45.539132422 +0100
    -@@ -485,7 +485,7 @@
    +--- configure.ac.orig	2022-01-19 23:35:26.000000000 +0000
    ++++ configure.ac	2022-02-13 18:21:35.250849436 +0000
    +@@ -527,7 +527,7 @@
                       libpng12-config])
        if test -n "$LIBPNG_CONFIG"; then
          PNG_INCLUDES=`$LIBPNG_CONFIG --cflags`
    diff --git a/sdk/recipes/patches/libwebp/configure.p b/sdk/recipes/patches/libwebp/configure.p
    deleted file mode 100644
    index 02dc813..0000000
    --- a/sdk/recipes/patches/libwebp/configure.p
    +++ /dev/null
    @@ -1,11 +0,0 @@
    ---- configure.orig	2019-07-04 20:43:58.000000000 +0100
    -+++ configure	2019-08-26 01:11:13.365038420 +0100
    -@@ -14312,7 +14312,7 @@
    - 
    -   if test -n "$LIBPNG_CONFIG"; then
    -     PNG_INCLUDES=`$LIBPNG_CONFIG --cflags`
    --    PNG_LIBS="`$LIBPNG_CONFIG --ldflags`"
    -+    PNG_LIBS="`$LIBPNG_CONFIG --static --ldflags`"
    -   fi
    - 
    - 
    -- 
    2.30.2
    
    
    patch file icon 0002-Update-libwebp-to-1.2.2.patch (2,774 bytes) 2022-02-13 19:23 +
  • patch file icon 0001-Update-libexpat-to-2.4.4.patch (659 bytes) 2022-02-13 19:24 -
    From a84c265415213d09d5a8685e11bbb35b0b5317e6 Mon Sep 17 00:00:00 2001
    From: Cameron Cawley <ccawley2011@gmail.com>
    Date: Sun, 13 Feb 2022 19:03:01 +0000
    Subject: [PATCH 1/2] Update libexpat to 2.4.4
    
    ---
     sdk/Makefile | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/sdk/Makefile b/sdk/Makefile
    index de5ec55..6f79bbe 100644
    --- a/sdk/Makefile
    +++ b/sdk/Makefile
    @@ -49,7 +49,7 @@ VERSION_LIBGNURX := 2.5.1
     VERSION_LIBPBL := 1_04
     VERSION_LIBCF := CVS-20130415
     # https://github.com/libexpat/libexpat
    -VERSION_LIBEXPAT := 2.2.9
    +VERSION_LIBEXPAT := 2.4.4
     VERSION_LDG := 2.32
     VERSION_WINDOM := 2.0.1
     VERSION_HERMES := 1.3.3
    -- 
    2.30.2
    
    
    patch file icon 0001-Update-libexpat-to-2.4.4.patch (659 bytes) 2022-02-13 19:24 +

-Relationships
+Relationships

-Notes
There are no notes attached to this issue.
+Notes

-Issue History
Date Modified Username Field Change
2022-02-13 19:23 Cameron Cawley New Issue
2022-02-13 19:23 Cameron Cawley File Added: 0002-Update-libwebp-to-1.2.2.patch
2022-02-13 19:24 Cameron Cawley File Added: 0001-Update-libexpat-to-2.4.4.patch
+Issue History