mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
packages: rename FOO_CONF_OPT into FOO_CONF_OPTS
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1d2574ac6f
commit
aaffd209fa
@@ -13,7 +13,7 @@ DIRECTFB_LICENSE_FILES = COPYING
|
||||
DIRECTFB_INSTALL_STAGING = YES
|
||||
DIRECTFB_AUTORECONF = YES
|
||||
|
||||
DIRECTFB_CONF_OPT = \
|
||||
DIRECTFB_CONF_OPTS = \
|
||||
--localstatedir=/var \
|
||||
--disable-explicit-deps \
|
||||
--enable-zlib \
|
||||
@@ -28,7 +28,7 @@ DIRECTFB_CONF_OPT = \
|
||||
--without-tools
|
||||
|
||||
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
||||
DIRECTFB_CONF_OPT += --disable-dynload
|
||||
DIRECTFB_CONF_OPTS += --disable-dynload
|
||||
endif
|
||||
|
||||
DIRECTFB_CONFIG_SCRIPTS = directfb-config
|
||||
@@ -36,28 +36,28 @@ DIRECTFB_CONFIG_SCRIPTS = directfb-config
|
||||
DIRECTFB_DEPENDENCIES = freetype zlib
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_MULTI),y)
|
||||
DIRECTFB_CONF_OPT += --enable-multi --enable-fusion
|
||||
DIRECTFB_CONF_OPTS += --enable-multi --enable-fusion
|
||||
DIRECTFB_DEPENDENCIES += linux-fusion
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_DEBUG),y)
|
||||
DIRECTFB_CONF_OPT += --enable-debug
|
||||
DIRECTFB_CONF_OPTS += --enable-debug
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_TRACE),y)
|
||||
DIRECTFB_CONF_OPT += --enable-trace
|
||||
DIRECTFB_CONF_OPTS += --enable-trace
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XSERVER),y)
|
||||
DIRECTFB_CONF_OPT += --enable-x11
|
||||
DIRECTFB_CONF_OPTS += --enable-x11
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-x11
|
||||
DIRECTFB_CONF_OPTS += --disable-x11
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_UNIQUE),y)
|
||||
DIRECTFB_CONF_OPT += --enable-unique
|
||||
DIRECTFB_CONF_OPTS += --enable-unique
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-unique
|
||||
DIRECTFB_CONF_OPTS += --disable-unique
|
||||
endif
|
||||
|
||||
DIRECTFB_GFX = \
|
||||
@@ -71,9 +71,9 @@ DIRECTFB_GFX = \
|
||||
$(if $(BR2_PACKAGE_DIRECTFB_EP9X),ep9x)
|
||||
|
||||
ifeq ($(strip $(DIRECTFB_GFX)),)
|
||||
DIRECTFB_CONF_OPT += --with-gfxdrivers=none
|
||||
DIRECTFB_CONF_OPTS += --with-gfxdrivers=none
|
||||
else
|
||||
DIRECTFB_CONF_OPT += \
|
||||
DIRECTFB_CONF_OPTS += \
|
||||
--with-gfxdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_GFX)))
|
||||
endif
|
||||
|
||||
@@ -89,62 +89,62 @@ DIRECTFB_DEPENDENCIES += tslib
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(DIRECTFB_INPUT)),)
|
||||
DIRECTFB_CONF_OPT += --with-inputdrivers=none
|
||||
DIRECTFB_CONF_OPTS += --with-inputdrivers=none
|
||||
else
|
||||
DIRECTFB_CONF_OPT += \
|
||||
DIRECTFB_CONF_OPTS += \
|
||||
--with-inputdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_INPUT)))
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_GIF),y)
|
||||
DIRECTFB_CONF_OPT += --enable-gif
|
||||
DIRECTFB_CONF_OPTS += --enable-gif
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-gif
|
||||
DIRECTFB_CONF_OPTS += --disable-gif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_PNG),y)
|
||||
DIRECTFB_CONF_OPT += --enable-png
|
||||
DIRECTFB_CONF_OPTS += --enable-png
|
||||
DIRECTFB_DEPENDENCIES += libpng
|
||||
DIRECTFB_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-png
|
||||
DIRECTFB_CONF_OPTS += --disable-png
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_JPEG),y)
|
||||
DIRECTFB_CONF_OPT += --enable-jpeg
|
||||
DIRECTFB_CONF_OPTS += --enable-jpeg
|
||||
DIRECTFB_DEPENDENCIES += jpeg
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-jpeg
|
||||
DIRECTFB_CONF_OPTS += --disable-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_SVG),y)
|
||||
DIRECTFB_CONF_OPT += --enable-svg
|
||||
DIRECTFB_CONF_OPTS += --enable-svg
|
||||
# needs some help to find cairo includes
|
||||
DIRECTFB_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/cairo"
|
||||
DIRECTFB_DEPENDENCIES += libsvg-cairo
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-svg
|
||||
DIRECTFB_CONF_OPTS += --disable-svg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_IMLIB2),y)
|
||||
DIRECTFB_CONF_OPT += --enable-imlib2
|
||||
DIRECTFB_CONF_OPTS += --enable-imlib2
|
||||
DIRECTFB_DEPENDENCIES += imlib2
|
||||
DIRECTFB_CONF_ENV += ac_cv_path_IMLIB2_CONFIG=$(STAGING_DIR)/usr/bin/imlib2-config
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --disable-imlib2
|
||||
DIRECTFB_CONF_OPTS += --disable-imlib2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
|
||||
DIRECTFB_CONF_OPT += --with-dither-rgb16=advanced
|
||||
DIRECTFB_CONF_OPTS += --with-dither-rgb16=advanced
|
||||
else
|
||||
DIRECTFB_CONF_OPT += --with-dither-rgb16=none
|
||||
DIRECTFB_CONF_OPTS += --with-dither-rgb16=none
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_TESTS),y)
|
||||
DIRECTFB_CONF_OPT += --with-tests
|
||||
DIRECTFB_CONF_OPTS += --with-tests
|
||||
endif
|
||||
|
||||
HOST_DIRECTFB_DEPENDENCIES = host-pkgconf host-libpng
|
||||
HOST_DIRECTFB_CONF_OPT = \
|
||||
HOST_DIRECTFB_CONF_OPTS = \
|
||||
--disable-debug \
|
||||
--disable-multi \
|
||||
--enable-png \
|
||||
|
||||
Reference in New Issue
Block a user