From 9e9b508390da57388d3cd301dc4e82fff1f1b275 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sun, 11 Apr 2021 16:28:32 +0200 Subject: [PATCH] Ports: Fix building SDL2_ttf when X11 headers are installed on the host system --- Ports/SDL2_ttf/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/SDL2_ttf/package.sh b/Ports/SDL2_ttf/package.sh index ca68480e28..e2e626f96d 100755 --- a/Ports/SDL2_ttf/package.sh +++ b/Ports/SDL2_ttf/package.sh @@ -9,6 +9,7 @@ configure() { run ./configure \ --host="${SERENITY_ARCH}-pc-serenity" \ --with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \ + --with-x=no \ FT2_CFLAGS="-I${SERENITY_BUILD_DIR}/Root/usr/local/include/freetype2" \ LIBS="-lgui -lgfx -lipc -lcore -lcompress" }