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
@@ -6,7 +6,7 @@
|
||||
|
||||
CLASSPATH_VERSION = 0.98
|
||||
CLASSPATH_SITE = $(BR2_GNU_MIRROR)/classpath
|
||||
CLASSPATH_CONF_OPT = \
|
||||
CLASSPATH_CONF_OPTS = \
|
||||
--disable-examples \
|
||||
--disable-plugin \
|
||||
--disable-rpath \
|
||||
@@ -16,7 +16,7 @@ CLASSPATH_CONF_OPT = \
|
||||
|
||||
# classpath assumes qt runs on top of X11, but we
|
||||
# don't support qt4 on X11
|
||||
CLASSPATH_CONF_OPT += --disable-qt-peer
|
||||
CLASSPATH_CONF_OPTS += --disable-qt-peer
|
||||
CLASSPATH_DEPENDENCIES = host-pkgconf
|
||||
CLASSPATH_AUTORECONF = YES
|
||||
CLASSPATH_LICENSE = GPLv2+ with exception
|
||||
@@ -25,39 +25,39 @@ CLASSPATH_LICENSE_FILES = COPYING
|
||||
# Needs ALSA pcm and sequencer (midi) support
|
||||
# pcm is always on for alsa-lib
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB_SEQ),y)
|
||||
CLASSPATH_CONF_OPT += --enable-alsa
|
||||
CLASSPATH_CONF_OPTS += --enable-alsa
|
||||
CLASSPATH_DEPENDENCIES += alsa-lib
|
||||
else
|
||||
CLASSPATH_CONF_OPT += --disable-alsa
|
||||
CLASSPATH_CONF_OPTS += --disable-alsa
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GMP),y)
|
||||
CLASSPATH_CONF_OPT += --enable-gmp --with-gmp="$(STAGING_DIR)/usr"
|
||||
CLASSPATH_CONF_OPTS += --enable-gmp --with-gmp="$(STAGING_DIR)/usr"
|
||||
CLASSPATH_DEPENDENCIES += gmp
|
||||
else
|
||||
CLASSPATH_CONF_OPT += --disable-gmp
|
||||
CLASSPATH_CONF_OPTS += --disable-gmp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_XORG7),yy)
|
||||
CLASSPATH_CONF_OPT += --enable-gtk-peer
|
||||
CLASSPATH_CONF_OPTS += --enable-gtk-peer
|
||||
CLASSPATH_DEPENDENCIES += libgtk2
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE),y)
|
||||
CLASSPATH_CONF_OPT += --enable-gstreamer-peer
|
||||
CLASSPATH_CONF_OPTS += --enable-gstreamer-peer
|
||||
CLASSPATH_DEPENDENCIES += gst-plugins-base
|
||||
else
|
||||
CLASSPATH_CONF_OPT += --disable-gstreamer-peer
|
||||
CLASSPATH_CONF_OPTS += --disable-gstreamer-peer
|
||||
endif
|
||||
|
||||
else
|
||||
CLASSPATH_CONF_OPT += --disable-gtk-peer --disable-gstreamer-peer
|
||||
CLASSPATH_CONF_OPTS += --disable-gtk-peer --disable-gstreamer-peer
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBXML2)$(BR2_PACKAGE_LIBXSLT),yy)
|
||||
CLASSPATH_CONF_OPT += --enable-xmlj
|
||||
CLASSPATH_CONF_OPTS += --enable-xmlj
|
||||
CLASSPATH_DEPENDENCIES += libxml2 libxslt
|
||||
else
|
||||
CLASSPATH_CONF_OPT += --disable-xmlj
|
||||
CLASSPATH_CONF_OPTS += --disable-xmlj
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user