cd869112a4
Backport a opatch from upstream to preoperly detect OpenGL, add patch to fix autoreconf. Fixes: http://autobuild.buildroot.org/results/be9/be9d9d0d75dca62d9edb28c1e4d81f7f33b30ea8/ http://autobuild.buildroot.org/results/db8/db87a00a7cd1f8d1627fa4a39a0f67e9328b2b0f/ http://autobuild.buildroot.org/results/f45/f45a9588090c296c9c5ece2cbc71f8bb64bebf73/ http://autobuild.buildroot.org/results/9cb/9cb669ab6760420421e3c907462b69fe36c46601/ and many others... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Thompson <peter.macleod.thompson@gmail.com> Cc: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
989 B
Makefile
35 lines
989 B
Makefile
################################################################################
|
|
#
|
|
# sdl2_ttf
|
|
#
|
|
################################################################################
|
|
|
|
SDL2_TTF_VERSION = 2.0.14
|
|
SDL2_TTF_SOURCE = SDL2_ttf-$(SDL2_TTF_VERSION).tar.gz
|
|
SDL2_TTF_SITE = http://www.libsdl.org/projects/SDL_ttf/release
|
|
SDL2_TTF_LICENSE = zlib
|
|
SDL2_TTF_LICENSE_FILES = COPYING.txt
|
|
SDL2_TTF_INSTALL_STAGING = YES
|
|
SDL2_TTF_DEPENDENCIES = sdl2 freetype host-pkgconf
|
|
|
|
# Two patches touching configure.in
|
|
SDL2_TTF_AUTORECONF = YES
|
|
|
|
SDL2_TTF_CONF_ENV = \
|
|
FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
|
|
|
|
# x-includes and x-libraries must be set for cross-compiling
|
|
# By default x_includes and x_libraries contains unsafe paths.
|
|
# (/usr/include and /usr/lib)
|
|
ifeq ($(BR2_PACKAGE_SDL2_X11),y)
|
|
SDL2_TTF_CONF_OPTS += \
|
|
--with-x \
|
|
--x-includes=$(STAGING_DIR)/usr/include \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
else
|
|
SDL2_TTF_CONF_OPTS += \
|
|
--without-x
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|