All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz
@ 2022-04-28 17:54 Fabrice Fontaine
  2022-04-28 21:39 ` Thomas Petazzoni via buildroot
  2022-05-27 18:54 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-04-28 17:54 UTC (permalink / raw)
  To: buildroot; +Cc: Peter Thompson, Fabrice Fontaine

Disable builtin harfbuzz which is enabled by default since bump to
version 2.0.18 in commit f4da031a77f200515bcc5b2e0fe665a7b4f2a780 and
https://github.com/libsdl-org/SDL_ttf/commit/834ec54127dc9c2a12928f5fe32cf110ec4c7a7f
resulting in the following build failure without threads:

In file included from external/harfbuzz-2.8.0/src/hb.hh:470,
                 from external/harfbuzz-2.8.0/src/hb-aat-layout.cc:28:
external/harfbuzz-2.8.0/src/hb-mutex.hh:53:10: fatal error: pthread.h: No such file or directory
   53 | #include <pthread.h>
      |          ^~~~~~~~~~~

Fixes:
 - http://autobuild.buildroot.org/results/ac8b366558bec61ada84ec15cf27652fde2b63b2

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/sdl2_ttf/sdl2_ttf.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/sdl2_ttf/sdl2_ttf.mk b/package/sdl2_ttf/sdl2_ttf.mk
index 54e76815f1..054e327fac 100644
--- a/package/sdl2_ttf/sdl2_ttf.mk
+++ b/package/sdl2_ttf/sdl2_ttf.mk
@@ -11,7 +11,7 @@ SDL2_TTF_LICENSE = Zlib
 SDL2_TTF_LICENSE_FILES = COPYING.txt
 SDL2_TTF_INSTALL_STAGING = YES
 SDL2_TTF_DEPENDENCIES = sdl2 freetype host-pkgconf
-SDL2_TTF_CONF_OPTS = --disable-freetype-builtin
+SDL2_TTF_CONF_OPTS = --disable-freetype-builtin --disable-harfbuzz-builtin
 
 ifeq ($(BR2_PACKAGE_HARFBUZZ),y)
 SDL2_TTF_DEPENDENCIES += harfbuzz
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz
  2022-04-28 17:54 [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz Fabrice Fontaine
@ 2022-04-28 21:39 ` Thomas Petazzoni via buildroot
  2022-05-27 18:54 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-04-28 21:39 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Peter Thompson, buildroot

On Thu, 28 Apr 2022 19:54:47 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Disable builtin harfbuzz which is enabled by default since bump to
> version 2.0.18 in commit f4da031a77f200515bcc5b2e0fe665a7b4f2a780 and
> https://github.com/libsdl-org/SDL_ttf/commit/834ec54127dc9c2a12928f5fe32cf110ec4c7a7f
> resulting in the following build failure without threads:
> 
> In file included from external/harfbuzz-2.8.0/src/hb.hh:470,
>                  from external/harfbuzz-2.8.0/src/hb-aat-layout.cc:28:
> external/harfbuzz-2.8.0/src/hb-mutex.hh:53:10: fatal error: pthread.h: No such file or directory
>    53 | #include <pthread.h>
>       |          ^~~~~~~~~~~
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/ac8b366558bec61ada84ec15cf27652fde2b63b2
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/sdl2_ttf/sdl2_ttf.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz
  2022-04-28 17:54 [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz Fabrice Fontaine
  2022-04-28 21:39 ` Thomas Petazzoni via buildroot
@ 2022-05-27 18:54 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-05-27 18:54 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Peter Thompson, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Disable builtin harfbuzz which is enabled by default since bump to
 > version 2.0.18 in commit f4da031a77f200515bcc5b2e0fe665a7b4f2a780 and
 > https://github.com/libsdl-org/SDL_ttf/commit/834ec54127dc9c2a12928f5fe32cf110ec4c7a7f
 > resulting in the following build failure without threads:

 > In file included from external/harfbuzz-2.8.0/src/hb.hh:470,
 >                  from external/harfbuzz-2.8.0/src/hb-aat-layout.cc:28:
 > external/harfbuzz-2.8.0/src/hb-mutex.hh:53:10: fatal error: pthread.h: No such file or directory
 >    53 | #include <pthread.h>
 >       |          ^~~~~~~~~~~

 > Fixes:
 >  - http://autobuild.buildroot.org/results/ac8b366558bec61ada84ec15cf27652fde2b63b2

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-05-27 18:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 17:54 [Buildroot] [PATCH 1/1] package/sdl2_ttf: disable builtin harfbuzz Fabrice Fontaine
2022-04-28 21:39 ` Thomas Petazzoni via buildroot
2022-05-27 18:54 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.