From: Peter Korsgaard Date: Fri, 7 Feb 2020 14:50:16 +0000 (+0100) Subject: package/classpath: drop gstreamer 0.10.x support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=87d907c2ffd842fe29b75b637ca568e3ffece108;p=buildroot.git package/classpath: drop gstreamer 0.10.x support With the upcoming removal of gstreamer 0.10, the logic for building classpath with support for it must go as well. Signed-off-by: Peter Korsgaard Signed-off-by: Yann E. MORIN --- diff --git a/package/classpath/classpath.mk b/package/classpath/classpath.mk index 6bba6948c5..7177bbfe06 100644 --- a/package/classpath/classpath.mk +++ b/package/classpath/classpath.mk @@ -12,6 +12,7 @@ CLASSPATH_CONF_OPTS = \ --disable-Werror \ --disable-gconf-peer \ --disable-gjdoc \ + --disable-gstreamer-peer \ --enable-tools # classpath assumes qt runs on top of X11, but we @@ -40,16 +41,8 @@ endif ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_XORG7),yy) CLASSPATH_CONF_OPTS += --enable-gtk-peer CLASSPATH_DEPENDENCIES += libgtk2 - -ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE),y) -CLASSPATH_CONF_OPTS += --enable-gstreamer-peer -CLASSPATH_DEPENDENCIES += gst-plugins-base -else -CLASSPATH_CONF_OPTS += --disable-gstreamer-peer -endif - else -CLASSPATH_CONF_OPTS += --disable-gtk-peer --disable-gstreamer-peer +CLASSPATH_CONF_OPTS += --disable-gtk-peer endif ifeq ($(BR2_PACKAGE_LIBXML2)$(BR2_PACKAGE_LIBXSLT)$(BR2_TOOLCHAIN_HAS_THREADS),yyy)