mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://lists.x.org/archives/xorg-announce/2026-July/003715.html https://lists.x.org/archives/xorg-announce/2026-July/003714.html Fixes - CVE-2026-56001: BitmapScaleBitmaps Integer Overflow Heap Buffer Overflow - CVE-2026-56002: PCF Font Parsing Heap Buffer Overflow - CVE-2026-56003: computeProps Property Buffer Heap Buffer Overflow Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# xlib_libXfont2
|
|
#
|
|
################################################################################
|
|
|
|
XLIB_LIBXFONT2_VERSION = 2.0.8
|
|
XLIB_LIBXFONT2_SOURCE = libXfont2-$(XLIB_LIBXFONT2_VERSION).tar.xz
|
|
XLIB_LIBXFONT2_SITE = https://xorg.freedesktop.org/archive/individual/lib
|
|
XLIB_LIBXFONT2_LICENSE = MIT
|
|
XLIB_LIBXFONT2_LICENSE_FILES = COPYING
|
|
XLIB_LIBXFONT2_CPE_ID_VENDOR = x
|
|
XLIB_LIBXFONT2_CPE_ID_PRODUCT = libxfont
|
|
XLIB_LIBXFONT2_INSTALL_STAGING = YES
|
|
XLIB_LIBXFONT2_DEPENDENCIES = \
|
|
freetype \
|
|
xlib_libfontenc \
|
|
xlib_xtrans \
|
|
xorgproto \
|
|
xfont_encodings
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBBSD),y)
|
|
XLIB_LIBXFONT2_DEPENDENCIES += libbsd
|
|
endif
|
|
|
|
HOST_XLIB_LIBXFONT2_DEPENDENCIES = \
|
|
host-freetype \
|
|
host-xlib_libfontenc \
|
|
host-xlib_xtrans \
|
|
host-xorgproto \
|
|
host-xfont_encodings
|
|
|
|
XLIB_LIBXFONT2_CONF_OPTS = --disable-devel-docs
|
|
HOST_XLIB_LIBXFONT2_CONF_OPTS = --disable-devel-docs
|
|
|
|
XLIB_LIBXFONT2_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
|
XLIB_LIBXFONT2_CFLAGS += -O0
|
|
endif
|
|
|
|
XLIB_LIBXFONT2_CONF_ENV = CFLAGS="$(XLIB_LIBXFONT2_CFLAGS)"
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|