1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

Ports: Fix building SDL2_ttf when X11 headers are installed on the host system

This commit is contained in:
Gunnar Beutner 2021-04-11 16:28:32 +02:00 committed by Andreas Kling
parent 8874b4b4fe
commit 9e9b508390

View file

@ -9,6 +9,7 @@ configure() {
run ./configure \ run ./configure \
--host="${SERENITY_ARCH}-pc-serenity" \ --host="${SERENITY_ARCH}-pc-serenity" \
--with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \ --with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \
--with-x=no \
FT2_CFLAGS="-I${SERENITY_BUILD_DIR}/Root/usr/local/include/freetype2" \ FT2_CFLAGS="-I${SERENITY_BUILD_DIR}/Root/usr/local/include/freetype2" \
LIBS="-lgui -lgfx -lipc -lcore -lcompress" LIBS="-lgui -lgfx -lipc -lcore -lcompress"
} }