mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] sdl2: Version bump. 2.0.22 -> 2.24.1
@ 2022-10-13 11:14 Christian Melki
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2 Christian Melki
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Christian Melki @ 2022-10-13 11:14 UTC (permalink / raw)
  To: ptxdist

https://github.com/libsdl-org/SDL/releases
SDL2 community have changed their version numbering scheme.
So this isn't as big of a bump as the version number would indicate.
But still, quite a lot of changes.

* Removed obsoleted options. Threads can't be disabled,
xvidmode support is removed. Only Xrandr is supported.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/sdl2.make | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/rules/sdl2.make b/rules/sdl2.make
index bdd50daa1..599b3b2ae 100644
--- a/rules/sdl2.make
+++ b/rules/sdl2.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2) += sdl2
 #
 # Paths and names
 #
-SDL2_VERSION	:= 2.0.22
-SDL2_MD5	:= 40aedb499cb2b6f106d909d9d97f869a
+SDL2_VERSION	:= 2.24.1
+SDL2_MD5	:= 10bad2a286f155565edc611f41345de1
 SDL2		:= SDL2-$(SDL2_VERSION)
 SDL2_SUFFIX	:= tar.gz
 SDL2_URL	:= https://www.libsdl.org/release/$(SDL2).$(SDL2_SUFFIX)
@@ -50,7 +50,6 @@ SDL2_CONF_OPT	:= \
 	--enable-sensor \
 	--disable-power \
 	--disable-filesystem \
-	--enable-threads \
 	--enable-timers \
 	--enable-file \
 	--enable-loadso \
@@ -100,12 +99,10 @@ SDL2_CONF_OPT	:= \
 	--disable-x11-shared \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xcursor \
 	--disable-video-x11-xdbe \
-	--disable-video-x11-xinerama \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xinput \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xrandr \
 	--disable-video-x11-scrnsaver \
 	--disable-video-x11-xshape \
-	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-vm \
 	--disable-video-vivante \
 	--disable-video-cocoa \
 	--disable-video-metal \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2
  2022-10-13 11:14 [ptxdist] [PATCH] sdl2: Version bump. 2.0.22 -> 2.24.1 Christian Melki
@ 2022-10-13 11:14 ` Christian Melki
  2022-10-19  5:41   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1 Christian Melki
  2022-10-19  5:41 ` [ptxdist] [APPLIED] sdl2: Version bump. 2.0.22 -> 2.24.1 Michael Olbrich
  2 siblings, 1 reply; 6+ messages in thread
From: Christian Melki @ 2022-10-13 11:14 UTC (permalink / raw)
  To: ptxdist

https://github.com/libsdl-org/SDL_image/releases
SDL2 community have changed their version numbering scheme.
So this isn't as big of a bump as the version number would indicate.
Still they've added notable changes such as:

New backend for JPG and PNG (stb-image).
New image formats AVIF, JXL (JPEGXL) and QOI.

* Disable stb-image. Keep the default libpng and libjpg backends for now.
* Disable JXL images.
* Disable QOI images.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/sdl2-image.make | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/rules/sdl2-image.make b/rules/sdl2-image.make
index 77468ffad..a01f69daf 100644
--- a/rules/sdl2-image.make
+++ b/rules/sdl2-image.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2_IMAGE) += sdl2-image
 #
 # Paths and names
 #
-SDL2_IMAGE_VERSION	:= 2.0.5
-SDL2_IMAGE_MD5		:= f26f3a153360a8f09ed5220ef7b07aea
+SDL2_IMAGE_VERSION	:= 2.6.2
+SDL2_IMAGE_MD5		:= 35da7c375b1c187b0f684c1c83b3b9c3
 SDL2_IMAGE		:= SDL2_image-$(SDL2_IMAGE_VERSION)
 SDL2_IMAGE_SUFFIX	:= tar.gz
 SDL2_IMAGE_URL		:= https://www.libsdl.org/projects/SDL_image/release/$(SDL2_IMAGE).$(SDL2_IMAGE_SUFFIX)
@@ -34,6 +34,9 @@ SDL2_IMAGE_CONF_OPT	:= \
 	--disable-static \
 	--disable-imageio \
 	--disable-sdltest \
+	--disable-stb-image \
+	--disable-jxl \
+	--disable-qoi \
 	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_BMP)-bmp \
 	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_GIF)-gif \
 	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_JPG)-jpg \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ptxdist] [PATCH] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1
  2022-10-13 11:14 [ptxdist] [PATCH] sdl2: Version bump. 2.0.22 -> 2.24.1 Christian Melki
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2 Christian Melki
@ 2022-10-13 11:14 ` Christian Melki
  2022-10-19  5:41   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-10-19  5:41 ` [ptxdist] [APPLIED] sdl2: Version bump. 2.0.22 -> 2.24.1 Michael Olbrich
  2 siblings, 1 reply; 6+ messages in thread
From: Christian Melki @ 2022-10-13 11:14 UTC (permalink / raw)
  To: ptxdist

https://github.com/libsdl-org/SDL_ttf/releases
SDL2 community have changed their version numbering scheme.
So this isn't as big of a bump as the version number would indicate.

* Plugs CVE-2018-25032, CVE-2022-27470
* License file changed name and contents is reformatted.
The reformatting is to make github recognize the file
as the correct license.
* Forward patch series with some changes to make them apply cleanly.
* Add global largefile option.
* Disable sdltest.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 ...01-configure-make-opengl-support-switchable.patch | 12 ++++++------
 .../{SDL2_ttf-2.0.18 => SDL2_ttf-2.20.1}/autogen.sh  |  0
 patches/{SDL2_ttf-2.0.18 => SDL2_ttf-2.20.1}/series  |  0
 rules/sdl2-ttf.make                                  | 10 ++++++----
 4 files changed, 12 insertions(+), 10 deletions(-)
 rename patches/{SDL2_ttf-2.0.18 => SDL2_ttf-2.20.1}/0001-configure-make-opengl-support-switchable.patch (75%)
 rename patches/{SDL2_ttf-2.0.18 => SDL2_ttf-2.20.1}/autogen.sh (100%)
 rename patches/{SDL2_ttf-2.0.18 => SDL2_ttf-2.20.1}/series (100%)

diff --git a/patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch b/patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
similarity index 75%
rename from patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch
rename to patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
index 95d04c40c..95ab1d2bf 100644
--- a/patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch
+++ b/patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
@@ -8,12 +8,12 @@ Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
  1 file changed, 7 insertions(+)
 
 diff --git a/configure.ac b/configure.ac
-index cb2a65ee83b7..7123a7c564b4 100644
+index 9b1c36358d41..640a4e228706 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -232,6 +232,12 @@ CheckVisibilityHidden()
- }
- CheckVisibilityHidden
+@@ -304,6 +304,12 @@ AM_CONDITIONAL(USE_BUILTIN_HARFBUZZ, test x$enable_harfbuzz_builtin = xyes)
+ dnl check for LD --no-undefined option
+ CheckNoUndef
  
 +dnl Check to see if OpenGL support is desired
 +AC_ARG_ENABLE(opengl,
@@ -24,11 +24,11 @@ index cb2a65ee83b7..7123a7c564b4 100644
  dnl Check for OpenGL
  case "$host" in
      *-*-cygwin* | *-*-mingw*)
-@@ -282,6 +288,7 @@ else
+@@ -354,6 +360,7 @@ else
      GL_LIBS=""
  fi
  AC_SUBST([GL_LIBS])
 +fi
  AC_SUBST([MATHLIB])
- AC_SUBST([WINDRES])
  AC_SUBST([TTF_CFLAGS])
+ AC_SUBST([TTF_LIBS])
diff --git a/patches/SDL2_ttf-2.0.18/autogen.sh b/patches/SDL2_ttf-2.20.1/autogen.sh
similarity index 100%
rename from patches/SDL2_ttf-2.0.18/autogen.sh
rename to patches/SDL2_ttf-2.20.1/autogen.sh
diff --git a/patches/SDL2_ttf-2.0.18/series b/patches/SDL2_ttf-2.20.1/series
similarity index 100%
rename from patches/SDL2_ttf-2.0.18/series
rename to patches/SDL2_ttf-2.20.1/series
diff --git a/rules/sdl2-ttf.make b/rules/sdl2-ttf.make
index 1f649e166..beaad3992 100644
--- a/rules/sdl2-ttf.make
+++ b/rules/sdl2-ttf.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2_TTF) += sdl2-ttf
 #
 # Paths and names
 #
-SDL2_TTF_VERSION	:= 2.0.18
-SDL2_TTF_MD5		:= 86d3023ad3fab597203022f856cff103
+SDL2_TTF_VERSION	:= 2.20.1
+SDL2_TTF_MD5		:= 746be429bdfb5892066dcfaf593e1644
 SDL2_TTF		:= SDL2_ttf-$(SDL2_TTF_VERSION)
 SDL2_TTF_SUFFIX		:= tar.gz
 SDL2_TTF_URL		:= https://www.libsdl.org/projects/SDL_ttf/release/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
@@ -23,7 +23,7 @@ SDL2_TTF_SOURCE		:= $(SRCDIR)/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
 SDL2_TTF_DIR		:= $(BUILDDIR)/$(SDL2_TTF)
 SDL2_TTF_LICENSE	:= zlib
 SDL2_TTF_LICENSE_FILES	:= \
-	file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87
+	file://LICENSE.txt;md5=771dca8728b18d39b130e19b36514371
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -31,7 +31,9 @@ SDL2_TTF_LICENSE_FILES	:= \
 
 SDL2_TTF_CONF_TOOL	:= autoconf
 SDL2_TTF_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR)
+	$(CROSS_AUTOCONF_USR) \
+	$(GLOBAL_LARGE_FILE_OPTION) \
+	--disable-sdltest
 
 ifdef PTXCONF_SDL2_PULSEAUDIO
 SDL2_TTF_LDFLAGS	:= \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [APPLIED] sdl2: Version bump. 2.0.22 -> 2.24.1
  2022-10-13 11:14 [ptxdist] [PATCH] sdl2: Version bump. 2.0.22 -> 2.24.1 Christian Melki
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2 Christian Melki
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1 Christian Melki
@ 2022-10-19  5:41 ` Michael Olbrich
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2022-10-19  5:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 2765df4f631e54ff844a6b3cd2e54ec1482eb64a.

Michael

[sent from post-receive hook]

On Wed, 19 Oct 2022 07:41:33 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> https://github.com/libsdl-org/SDL/releases
> SDL2 community have changed their version numbering scheme.
> So this isn't as big of a bump as the version number would indicate.
> But still, quite a lot of changes.
> 
> * Removed obsoleted options. Threads can't be disabled,
> xvidmode support is removed. Only Xrandr is supported.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20221013111452.3298415-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/sdl2.make b/rules/sdl2.make
> index bdd50daa1a53..599b3b2ae7c3 100644
> --- a/rules/sdl2.make
> +++ b/rules/sdl2.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2) += sdl2
>  #
>  # Paths and names
>  #
> -SDL2_VERSION	:= 2.0.22
> -SDL2_MD5	:= 40aedb499cb2b6f106d909d9d97f869a
> +SDL2_VERSION	:= 2.24.1
> +SDL2_MD5	:= 10bad2a286f155565edc611f41345de1
>  SDL2		:= SDL2-$(SDL2_VERSION)
>  SDL2_SUFFIX	:= tar.gz
>  SDL2_URL	:= https://www.libsdl.org/release/$(SDL2).$(SDL2_SUFFIX)
> @@ -50,7 +50,6 @@ SDL2_CONF_OPT	:= \
>  	--enable-sensor \
>  	--disable-power \
>  	--disable-filesystem \
> -	--enable-threads \
>  	--enable-timers \
>  	--enable-file \
>  	--enable-loadso \
> @@ -100,12 +99,10 @@ SDL2_CONF_OPT	:= \
>  	--disable-x11-shared \
>  	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xcursor \
>  	--disable-video-x11-xdbe \
> -	--disable-video-x11-xinerama \
>  	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xinput \
>  	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xrandr \
>  	--disable-video-x11-scrnsaver \
>  	--disable-video-x11-xshape \
> -	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-vm \
>  	--disable-video-vivante \
>  	--disable-video-cocoa \
>  	--disable-video-metal \



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [APPLIED] sdl2-image: Version bump. 2.0.5 -> 2.6.2
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2 Christian Melki
@ 2022-10-19  5:41   ` Michael Olbrich
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2022-10-19  5:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as dd1760573234500f35d8884d950230c8e50df759.

Michael

[sent from post-receive hook]

On Wed, 19 Oct 2022 07:41:34 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> https://github.com/libsdl-org/SDL_image/releases
> SDL2 community have changed their version numbering scheme.
> So this isn't as big of a bump as the version number would indicate.
> Still they've added notable changes such as:
> 
> New backend for JPG and PNG (stb-image).
> New image formats AVIF, JXL (JPEGXL) and QOI.
> 
> * Disable stb-image. Keep the default libpng and libjpg backends for now.
> * Disable JXL images.
> * Disable QOI images.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20221013111452.3298415-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/sdl2-image.make b/rules/sdl2-image.make
> index 77468ffad96e..a01f69daff61 100644
> --- a/rules/sdl2-image.make
> +++ b/rules/sdl2-image.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2_IMAGE) += sdl2-image
>  #
>  # Paths and names
>  #
> -SDL2_IMAGE_VERSION	:= 2.0.5
> -SDL2_IMAGE_MD5		:= f26f3a153360a8f09ed5220ef7b07aea
> +SDL2_IMAGE_VERSION	:= 2.6.2
> +SDL2_IMAGE_MD5		:= 35da7c375b1c187b0f684c1c83b3b9c3
>  SDL2_IMAGE		:= SDL2_image-$(SDL2_IMAGE_VERSION)
>  SDL2_IMAGE_SUFFIX	:= tar.gz
>  SDL2_IMAGE_URL		:= https://www.libsdl.org/projects/SDL_image/release/$(SDL2_IMAGE).$(SDL2_IMAGE_SUFFIX)
> @@ -34,6 +34,9 @@ SDL2_IMAGE_CONF_OPT	:= \
>  	--disable-static \
>  	--disable-imageio \
>  	--disable-sdltest \
> +	--disable-stb-image \
> +	--disable-jxl \
> +	--disable-qoi \
>  	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_BMP)-bmp \
>  	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_GIF)-gif \
>  	--$(call ptx/endis, PTXCONF_SDL2_IMAGE_JPG)-jpg \



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [APPLIED] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1
  2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1 Christian Melki
@ 2022-10-19  5:41   ` Michael Olbrich
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2022-10-19  5:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as ce36bb22ad61ca1795e4c43c9419d62d605dfd99.

Michael

[sent from post-receive hook]

On Wed, 19 Oct 2022 07:41:35 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> https://github.com/libsdl-org/SDL_ttf/releases
> SDL2 community have changed their version numbering scheme.
> So this isn't as big of a bump as the version number would indicate.
> 
> * Plugs CVE-2018-25032, CVE-2022-27470
> * License file changed name and contents is reformatted.
> The reformatting is to make github recognize the file
> as the correct license.
> * Forward patch series with some changes to make them apply cleanly.
> * Add global largefile option.
> * Disable sdltest.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20221013111452.3298415-3-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch b/patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
> similarity index 75%
> rename from patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch
> rename to patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
> index 95d04c40c595..95ab1d2bfcb0 100644
> --- a/patches/SDL2_ttf-2.0.18/0001-configure-make-opengl-support-switchable.patch
> +++ b/patches/SDL2_ttf-2.20.1/0001-configure-make-opengl-support-switchable.patch
> @@ -8,12 +8,12 @@ Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
>   1 file changed, 7 insertions(+)
>  
>  diff --git a/configure.ac b/configure.ac
> -index cb2a65ee83b7..7123a7c564b4 100644
> +index 9b1c36358d41..640a4e228706 100644
>  --- a/configure.ac
>  +++ b/configure.ac
> -@@ -232,6 +232,12 @@ CheckVisibilityHidden()
> - }
> - CheckVisibilityHidden
> +@@ -304,6 +304,12 @@ AM_CONDITIONAL(USE_BUILTIN_HARFBUZZ, test x$enable_harfbuzz_builtin = xyes)
> + dnl check for LD --no-undefined option
> + CheckNoUndef
>   
>  +dnl Check to see if OpenGL support is desired
>  +AC_ARG_ENABLE(opengl,
> @@ -24,11 +24,11 @@ index cb2a65ee83b7..7123a7c564b4 100644
>   dnl Check for OpenGL
>   case "$host" in
>       *-*-cygwin* | *-*-mingw*)
> -@@ -282,6 +288,7 @@ else
> +@@ -354,6 +360,7 @@ else
>       GL_LIBS=""
>   fi
>   AC_SUBST([GL_LIBS])
>  +fi
>   AC_SUBST([MATHLIB])
> - AC_SUBST([WINDRES])
>   AC_SUBST([TTF_CFLAGS])
> + AC_SUBST([TTF_LIBS])
> diff --git a/patches/SDL2_ttf-2.0.18/autogen.sh b/patches/SDL2_ttf-2.20.1/autogen.sh
> similarity index 100%
> rename from patches/SDL2_ttf-2.0.18/autogen.sh
> rename to patches/SDL2_ttf-2.20.1/autogen.sh
> diff --git a/patches/SDL2_ttf-2.0.18/series b/patches/SDL2_ttf-2.20.1/series
> similarity index 100%
> rename from patches/SDL2_ttf-2.0.18/series
> rename to patches/SDL2_ttf-2.20.1/series
> diff --git a/rules/sdl2-ttf.make b/rules/sdl2-ttf.make
> index 1f649e166b3d..beaad399285a 100644
> --- a/rules/sdl2-ttf.make
> +++ b/rules/sdl2-ttf.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2_TTF) += sdl2-ttf
>  #
>  # Paths and names
>  #
> -SDL2_TTF_VERSION	:= 2.0.18
> -SDL2_TTF_MD5		:= 86d3023ad3fab597203022f856cff103
> +SDL2_TTF_VERSION	:= 2.20.1
> +SDL2_TTF_MD5		:= 746be429bdfb5892066dcfaf593e1644
>  SDL2_TTF		:= SDL2_ttf-$(SDL2_TTF_VERSION)
>  SDL2_TTF_SUFFIX		:= tar.gz
>  SDL2_TTF_URL		:= https://www.libsdl.org/projects/SDL_ttf/release/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
> @@ -23,7 +23,7 @@ SDL2_TTF_SOURCE		:= $(SRCDIR)/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
>  SDL2_TTF_DIR		:= $(BUILDDIR)/$(SDL2_TTF)
>  SDL2_TTF_LICENSE	:= zlib
>  SDL2_TTF_LICENSE_FILES	:= \
> -	file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87
> +	file://LICENSE.txt;md5=771dca8728b18d39b130e19b36514371
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -31,7 +31,9 @@ SDL2_TTF_LICENSE_FILES	:= \
>  
>  SDL2_TTF_CONF_TOOL	:= autoconf
>  SDL2_TTF_CONF_OPT	:= \
> -	$(CROSS_AUTOCONF_USR)
> +	$(CROSS_AUTOCONF_USR) \
> +	$(GLOBAL_LARGE_FILE_OPTION) \
> +	--disable-sdltest
>  
>  ifdef PTXCONF_SDL2_PULSEAUDIO
>  SDL2_TTF_LDFLAGS	:= \



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-10-19  5:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-13 11:14 [ptxdist] [PATCH] sdl2: Version bump. 2.0.22 -> 2.24.1 Christian Melki
2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-image: Version bump. 2.0.5 -> 2.6.2 Christian Melki
2022-10-19  5:41   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-13 11:14 ` [ptxdist] [PATCH] sdl2-ttf: Version bump. 2.0.18 -> 2.20.1 Christian Melki
2022-10-19  5:41   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-19  5:41 ` [ptxdist] [APPLIED] sdl2: Version bump. 2.0.22 -> 2.24.1 Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox