mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
As we're about to remove libgtk2, let's drop the optional dependency of mjpegtools on libgtk2, and forcefully disable gtk support. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# mjpegtools
|
|
#
|
|
################################################################################
|
|
|
|
MJPEGTOOLS_VERSION = 2.2.1
|
|
MJPEGTOOLS_SITE = http://sourceforge.net/projects/mjpeg/files/mjpegtools/$(MJPEGTOOLS_VERSION)
|
|
MJPEGTOOLS_DEPENDENCIES = host-pkgconf jpeg
|
|
MJPEGTOOLS_INSTALL_STAGING = YES
|
|
MJPEGTOOLS_LICENSE = GPL-2.0+
|
|
MJPEGTOOLS_LICENSE_FILES = COPYING
|
|
MJPEGTOOLS_CONF_OPTS = --without-gtk
|
|
|
|
ifeq ($(BR2_PACKAGE_MJPEGTOOLS_SIMD_SUPPORT),y)
|
|
MJPEGTOOLS_CONF_OPTS += --enable-simd-accel
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --disable-simd-accel
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
MJPEGTOOLS_CONF_OPTS += --with-libpng
|
|
MJPEGTOOLS_DEPENDENCIES += libpng
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --without-libpng
|
|
endif
|
|
|
|
# expects X11 backend in sdl
|
|
ifeq ($(BR2_PACKAGE_SDL_X11),y)
|
|
MJPEGTOOLS_CONF_OPTS += --with-libsdl
|
|
MJPEGTOOLS_DEPENDENCIES += sdl
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --without-libsdl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL_GFX),y)
|
|
MJPEGTOOLS_CONF_OPTS += --with-sdlgfx
|
|
MJPEGTOOLS_DEPENDENCIES += sdl_gfx
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --without-sdlgfx
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
MJPEGTOOLS_CONF_OPTS += --with-x
|
|
MJPEGTOOLS_DEPENDENCIES += xlib_libX11
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --without-x
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXXF86DGA),y)
|
|
MJPEGTOOLS_CONF_OPTS += --with-dga
|
|
MJPEGTOOLS_DEPENDENCIES += xlib_libXxf86dga
|
|
else
|
|
MJPEGTOOLS_CONF_OPTS += --without-dga
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|