diff options
| author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-09-27 21:32:44 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-04 18:54:16 +0200 |
| commit | aaffd209fae91a733fe0becb72268f87bf4ea369 (patch) | |
| tree | 40569895ef8a09c605060e2164d86567a12f9889 /package/gstreamer1/gst1-plugins-base | |
| parent | 1d2574ac6f6d30044ee138b6235c50a6a3998d8a (diff) | |
| download | buildroot-aaffd209fae91a733fe0becb72268f87bf4ea369.tar.gz buildroot-aaffd209fae91a733fe0becb72268f87bf4ea369.zip | |
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>
Diffstat (limited to 'package/gstreamer1/gst1-plugins-base')
| -rw-r--r-- | package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk b/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk index 99a50f31b3..bc19bac385 100644 --- a/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk +++ b/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk @@ -18,7 +18,7 @@ GST1_PLUGINS_BASE_CONF_ENV = FT2_CONFIG=/bin/false \ ac_cv_header_stdint_t="stdint.h" -GST1_PLUGINS_BASE_CONF_OPT = \ +GST1_PLUGINS_BASE_CONF_OPTS = \ --disable-examples \ --disable-oggtest \ --disable-vorbistest \ @@ -27,7 +27,7 @@ GST1_PLUGINS_BASE_CONF_OPT = \ --disable-debug # Options which require currently unpackaged libraries -GST1_PLUGINS_BASE_CONF_OPT += \ +GST1_PLUGINS_BASE_CONF_OPTS += \ --disable-cdparanoia \ --disable-libvisual \ --disable-iso-codes @@ -38,125 +38,125 @@ GST1_PLUGINS_BASE_DEPENDENCIES = gstreamer1 ifeq ($(BR2_PACKAGE_ORC),y) GST1_PLUGINS_BASE_DEPENDENCIES += orc -GST1_PLUGINS_BASE_CONF_OPT += --enable-orc +GST1_PLUGINS_BASE_CONF_OPTS += --enable-orc endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ADDER),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-adder +GST1_PLUGINS_BASE_CONF_OPTS += --enable-adder else -GST1_PLUGINS_BASE_CONF_OPT += --disable-adder +GST1_PLUGINS_BASE_CONF_OPTS += --disable-adder endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_APP),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-app +GST1_PLUGINS_BASE_CONF_OPTS += --enable-app else -GST1_PLUGINS_BASE_CONF_OPT += --disable-app +GST1_PLUGINS_BASE_CONF_OPTS += --disable-app endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOCONVERT),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-audioconvert +GST1_PLUGINS_BASE_CONF_OPTS += --enable-audioconvert else -GST1_PLUGINS_BASE_CONF_OPT += --disable-audioconvert +GST1_PLUGINS_BASE_CONF_OPTS += --disable-audioconvert endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIORATE),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-audiorate +GST1_PLUGINS_BASE_CONF_OPTS += --enable-audiorate else -GST1_PLUGINS_BASE_CONF_OPT += --disable-audiorate +GST1_PLUGINS_BASE_CONF_OPTS += --disable-audiorate endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-audiotestsrc +GST1_PLUGINS_BASE_CONF_OPTS += --enable-audiotestsrc else -GST1_PLUGINS_BASE_CONF_OPT += --disable-audiotestsrc +GST1_PLUGINS_BASE_CONF_OPTS += --disable-audiotestsrc endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ENCODING),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-encoding +GST1_PLUGINS_BASE_CONF_OPTS += --enable-encoding else -GST1_PLUGINS_BASE_CONF_OPT += --disable-encoding +GST1_PLUGINS_BASE_CONF_OPTS += --disable-encoding endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERT),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-videoconvert +GST1_PLUGINS_BASE_CONF_OPTS += --enable-videoconvert else -GST1_PLUGINS_BASE_CONF_OPT += --disable-videoconvert +GST1_PLUGINS_BASE_CONF_OPTS += --disable-videoconvert endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_GIO),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-gio +GST1_PLUGINS_BASE_CONF_OPTS += --enable-gio else -GST1_PLUGINS_BASE_CONF_OPT += --disable-gio +GST1_PLUGINS_BASE_CONF_OPTS += --disable-gio endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PLAYBACK),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-playback +GST1_PLUGINS_BASE_CONF_OPTS += --enable-playback else -GST1_PLUGINS_BASE_CONF_OPT += --disable-playback +GST1_PLUGINS_BASE_CONF_OPTS += --disable-playback endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-audioresample +GST1_PLUGINS_BASE_CONF_OPTS += --enable-audioresample else -GST1_PLUGINS_BASE_CONF_OPT += --disable-audioresample +GST1_PLUGINS_BASE_CONF_OPTS += --disable-audioresample endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_SUBPARSE),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-subparse +GST1_PLUGINS_BASE_CONF_OPTS += --enable-subparse else -GST1_PLUGINS_BASE_CONF_OPT += --disable-subparse +GST1_PLUGINS_BASE_CONF_OPTS += --disable-subparse endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TCP),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-tcp +GST1_PLUGINS_BASE_CONF_OPTS += --enable-tcp else -GST1_PLUGINS_BASE_CONF_OPT += --disable-tcp +GST1_PLUGINS_BASE_CONF_OPTS += --disable-tcp endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TYPEFIND),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-typefind +GST1_PLUGINS_BASE_CONF_OPTS += --enable-typefind else -GST1_PLUGINS_BASE_CONF_OPT += --disable-typefind +GST1_PLUGINS_BASE_CONF_OPTS += --disable-typefind endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-videotestsrc +GST1_PLUGINS_BASE_CONF_OPTS += --enable-videotestsrc else -GST1_PLUGINS_BASE_CONF_OPT += --disable-videotestsrc +GST1_PLUGINS_BASE_CONF_OPTS += --disable-videotestsrc endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEORATE),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-videorate +GST1_PLUGINS_BASE_CONF_OPTS += --enable-videorate else -GST1_PLUGINS_BASE_CONF_OPT += --disable-videorate +GST1_PLUGINS_BASE_CONF_OPTS += --disable-videorate endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOSCALE),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-videoscale +GST1_PLUGINS_BASE_CONF_OPTS += --enable-videoscale else -GST1_PLUGINS_BASE_CONF_OPT += --disable-videoscale +GST1_PLUGINS_BASE_CONF_OPTS += --disable-videoscale endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VOLUME),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-volume +GST1_PLUGINS_BASE_CONF_OPTS += --enable-volume else -GST1_PLUGINS_BASE_CONF_OPT += --disable-volume +GST1_PLUGINS_BASE_CONF_OPTS += --disable-volume endif ifeq ($(BR2_PACKAGE_ZLIB),y) GST1_PLUGINS_BASE_DEPENDENCIES += zlib else -GST1_PLUGINS_BASE_CONF_OPT += --disable-zlib +GST1_PLUGINS_BASE_CONF_OPTS += --disable-zlib endif ifeq ($(BR2_PACKAGE_XORG7),y) GST1_PLUGINS_BASE_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXv -GST1_PLUGINS_BASE_CONF_OPT += \ +GST1_PLUGINS_BASE_CONF_OPTS += \ --enable-x \ --enable-xshm \ --enable-xvideo else -GST1_PLUGINS_BASE_CONF_OPT += \ +GST1_PLUGINS_BASE_CONF_OPTS += \ --disable-x \ --disable-xshm \ --disable-xvideo @@ -165,42 +165,42 @@ endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ALSA),y) GST1_PLUGINS_BASE_DEPENDENCIES += alsa-lib else -GST1_PLUGINS_BASE_CONF_OPT += --disable-alsa +GST1_PLUGINS_BASE_CONF_OPTS += --disable-alsa endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TREMOR),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-ivorbis +GST1_PLUGINS_BASE_CONF_OPTS += --enable-ivorbis GST1_PLUGINS_BASE_DEPENDENCIES += tremor else -GST1_PLUGINS_BASE_CONF_OPT += --disable-ivorbis +GST1_PLUGINS_BASE_CONF_OPTS += --disable-ivorbis endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OGG),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-ogg +GST1_PLUGINS_BASE_CONF_OPTS += --enable-ogg GST1_PLUGINS_BASE_DEPENDENCIES += libogg else -GST1_PLUGINS_BASE_CONF_OPT += --disable-ogg +GST1_PLUGINS_BASE_CONF_OPTS += --disable-ogg endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PANGO),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-pango +GST1_PLUGINS_BASE_CONF_OPTS += --enable-pango GST1_PLUGINS_BASE_DEPENDENCIES += pango else -GST1_PLUGINS_BASE_CONF_OPT += --disable-pango +GST1_PLUGINS_BASE_CONF_OPTS += --disable-pango endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_THEORA),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-theora +GST1_PLUGINS_BASE_CONF_OPTS += --enable-theora GST1_PLUGINS_BASE_DEPENDENCIES += libtheora else -GST1_PLUGINS_BASE_CONF_OPT += --disable-theora +GST1_PLUGINS_BASE_CONF_OPTS += --disable-theora endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VORBIS),y) -GST1_PLUGINS_BASE_CONF_OPT += --enable-vorbis +GST1_PLUGINS_BASE_CONF_OPTS += --enable-vorbis GST1_PLUGINS_BASE_DEPENDENCIES += libvorbis else -GST1_PLUGINS_BASE_CONF_OPT += --disable-vorbis +GST1_PLUGINS_BASE_CONF_OPTS += --disable-vorbis endif $(eval $(autotools-package)) |

