mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
gst: Add better support for static plugins
This commit is contained in:
parent
2ea9a66dd5
commit
b0b0557c48
71 changed files with 96 additions and 74 deletions
24
configure.ac
24
configure.ac
|
@ -265,6 +265,28 @@ AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
|
||||||
["${srcdir}/gst-plugins-good.doap"],
|
["${srcdir}/gst-plugins-good.doap"],
|
||||||
[$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_MICRO])
|
[$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_MICRO])
|
||||||
|
|
||||||
|
dnl build static plugins or not
|
||||||
|
AC_MSG_CHECKING([whether to build static plugins or not])
|
||||||
|
AC_ARG_ENABLE(
|
||||||
|
static-plugins,
|
||||||
|
AC_HELP_STRING(
|
||||||
|
[--enable-static-plugins],
|
||||||
|
[build static plugins @<:@default=no@:>@]),
|
||||||
|
[AS_CASE(
|
||||||
|
[$enableval], [no], [], [yes], [],
|
||||||
|
[AC_MSG_ERROR([bad value "$enableval" for --enable-static-plugins])])],
|
||||||
|
[enable_static_plugins=no])
|
||||||
|
AC_MSG_RESULT([$enable_static_plugins])
|
||||||
|
if test "x$enable_static_plugins" = xyes; then
|
||||||
|
AC_DEFINE(GST_PLUGIN_BUILD_STATIC, 1,
|
||||||
|
[Define if static plugins should be built])
|
||||||
|
GST_PLUGIN_LIBTOOLFLAGS=""
|
||||||
|
else
|
||||||
|
GST_PLUGIN_LIBTOOLFLAGS="--tag=disable-static"
|
||||||
|
fi
|
||||||
|
AC_SUBST(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
AM_CONDITIONAL(GST_PLUGIN_BUILD_STATIC, test "x$enable_static_plugins" = "xyes")
|
||||||
|
|
||||||
# set by AG_GST_PARSE_SUBSYSTEM_DISABLES above
|
# set by AG_GST_PARSE_SUBSYSTEM_DISABLES above
|
||||||
dnl make sure it doesn't complain about unused variables if debugging is disabled
|
dnl make sure it doesn't complain about unused variables if debugging is disabled
|
||||||
NO_WARNINGS=""
|
NO_WARNINGS=""
|
||||||
|
@ -1071,7 +1093,7 @@ AC_SUBST(GST_ALL_LDFLAGS)
|
||||||
|
|
||||||
dnl this really should only contain flags, not libs - they get added before
|
dnl this really should only contain flags, not libs - they get added before
|
||||||
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
||||||
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc.*' $GST_ALL_LDFLAGS"
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_.*' $GST_ALL_LDFLAGS"
|
||||||
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
dnl *** output files ***
|
dnl *** output files ***
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstaasink_la_SOURCES = gstaasink.c
|
||||||
libgstaasink_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(AALIB_CFLAGS)
|
libgstaasink_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(AALIB_CFLAGS)
|
||||||
libgstaasink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(AALIB_LIBS)
|
libgstaasink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(AALIB_LIBS)
|
||||||
libgstaasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaasink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaasink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstaasink.h
|
noinst_HEADERS = gstaasink.h
|
||||||
|
|
|
@ -13,5 +13,5 @@ libgstcairo_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(CAIRO_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(CAIRO_LIBS) $(LIBM)
|
||||||
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcairo_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcairo_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstdv_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBDV_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBDV_LIBS)
|
||||||
libgstdv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdv_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdvdemux.h gstdvdec.h gstsmptetimecode.h
|
noinst_HEADERS = gstdvdemux.h gstdvdec.h gstsmptetimecode.h
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,6 @@ libgstflac_la_LIBADD = \
|
||||||
-lgstaudio-$(GST_API_VERSION) \
|
-lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(FLAC_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(FLAC_LIBS)
|
||||||
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstflac_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstflac_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstflacenc.h gstflacdec.h gstflactag.h
|
noinst_HEADERS = gstflacenc.h gstflacdec.h gstflactag.h
|
||||||
|
|
|
@ -21,7 +21,7 @@ libgstgdkpixbuf_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS) $(GDK_PIXBUF_LIBS)
|
$(GST_LIBS) $(GDK_PIXBUF_LIBS)
|
||||||
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgdkpixbuf_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgdkpixbuf_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstgdkpixbufdec.h \
|
gstgdkpixbufdec.h \
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstjack_la_SOURCES = gstjackutil.c gstjack.c gstjackaudiosrc.c gstjackaudiosi
|
||||||
libgstjack_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(JACK_CFLAGS)
|
libgstjack_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(JACK_CFLAGS)
|
||||||
libgstjack_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(JACK_LIBS)
|
libgstjack_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(JACK_LIBS)
|
||||||
libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstjack_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstjack_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstjackutil.h gstjackaudiosrc.h gstjackaudiosink.h gstjackaudioclient.h gstjack.h gstjackringbuffer.h
|
noinst_HEADERS = gstjackutil.h gstjackaudiosrc.h gstjackaudiosink.h gstjackaudioclient.h gstjack.h gstjackringbuffer.h
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstjpeg_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAG
|
||||||
libgstjpeg_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
libgstjpeg_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(JPEG_LIBS) $(LIBM)
|
$(JPEG_LIBS) $(LIBM)
|
||||||
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstjpeg_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstjpeg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstjpeg.h \
|
gstjpeg.h \
|
||||||
|
|
|
@ -13,6 +13,6 @@ libgstcacasink_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(LIBCACA_LIBS)
|
$(LIBCACA_LIBS)
|
||||||
libgstcacasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcacasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcacasink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcacasink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcacasink.h
|
noinst_HEADERS = gstcacasink.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstpng_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(LIBPNG_CFLAGS)
|
||||||
libgstpng_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
libgstpng_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_LIBS) $(LIBPNG_LIBS)
|
$(GST_LIBS) $(LIBPNG_LIBS)
|
||||||
libgstpng_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstpng_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstpng_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstpng_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstpngdec.h gstpngenc.h
|
noinst_HEADERS = gstpngdec.h gstpngenc.h
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstmikmod_la_SOURCES = gstmikmod.c drv_gst.c mikmod_reader.c
|
||||||
libgstmikmod_la_CFLAGS = $(GST_CFLAGS) $(MIKMOD_CFLAGS)
|
libgstmikmod_la_CFLAGS = $(GST_CFLAGS) $(MIKMOD_CFLAGS)
|
||||||
libgstmikmod_la_LIBADD = $(GST_LIBS) $(MIKMOD_LIBS)
|
libgstmikmod_la_LIBADD = $(GST_LIBS) $(MIKMOD_LIBS)
|
||||||
libgstmikmod_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmikmod_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmikmod_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmikmod_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmikmod.h
|
noinst_HEADERS = gstmikmod.h
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstpulse_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
-lgstpbutils-$(GST_API_VERSION) \
|
-lgstpbutils-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(PULSE_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(PULSE_LIBS)
|
||||||
libgstpulse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstpulse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstpulse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstpulse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
pulseprobe.h \
|
pulseprobe.h \
|
||||||
|
|
|
@ -22,7 +22,7 @@ libgst1394_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(DV1394_LIBS)
|
$(DV1394_LIBS)
|
||||||
libgst1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgst1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgst1394_la_LIBTOOLFLAGS = --tag=disable-static
|
libgst1394_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdv1394src.h gst1394probe.h $(hdvheaders) \
|
noinst_HEADERS = gstdv1394src.h gst1394probe.h $(hdvheaders) \
|
||||||
gst1394clock.h
|
gst1394clock.h
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstshout2_la_SOURCES = gstshout2.c
|
||||||
libgstshout2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SHOUT2_CFLAGS)
|
libgstshout2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SHOUT2_CFLAGS)
|
||||||
libgstshout2_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SHOUT2_LIBS)
|
libgstshout2_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SHOUT2_LIBS)
|
||||||
libgstshout2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstshout2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstshout2_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstshout2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstshout2.h
|
noinst_HEADERS = gstshout2.h
|
||||||
|
|
|
@ -8,6 +8,6 @@ libgstsouphttpsrc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||||
-DSOUP_VERSION_MAX_ALLOWED=SOUP_DEPRECATED_IN_2_26
|
-DSOUP_VERSION_MAX_ALLOWED=SOUP_DEPRECATED_IN_2_26
|
||||||
libgstsouphttpsrc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(SOUP_LIBS)
|
libgstsouphttpsrc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(SOUP_LIBS)
|
||||||
libgstsouphttpsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsouphttpsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsouphttpsrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsouphttpsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsouphttpsrc.h gstsouphttpclientsink.h
|
noinst_HEADERS = gstsouphttpsrc.h gstsouphttpclientsink.h
|
||||||
|
|
|
@ -13,6 +13,6 @@ libgstspeex_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(SPEEX_LIBS)
|
$(SPEEX_LIBS)
|
||||||
libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstspeex_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstspeex_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstspeexenc.h gstspeexdec.h
|
noinst_HEADERS = gstspeexenc.h gstspeexdec.h
|
||||||
|
|
|
@ -14,6 +14,6 @@ libgsttaglib_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(TAGLIB_LIBS)
|
$(TAGLIB_LIBS)
|
||||||
libgsttaglib_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsttaglib_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsttaglib_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsttaglib_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstid3v2mux.h gstapev2mux.h
|
noinst_HEADERS = gstid3v2mux.h gstapev2mux.h
|
||||||
|
|
|
@ -17,7 +17,7 @@ libgstvpx_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS)
|
||||||
libgstvpx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvpx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvpx_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvpx_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstvp8dec.h \
|
gstvp8dec.h \
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstwavpack_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
libgstwavpack_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
libgstwavpack_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(WAVPACK_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(WAVPACK_LIBS)
|
||||||
libgstwavpack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwavpack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwavpack_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwavpack_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstwavpackdec.h \
|
gstwavpackdec.h \
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstalpha_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
libgstalpha_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
libgstalpha_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstalpha_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstalpha_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstalpha_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstalpha_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
libgstalphacolor_la_SOURCES = gstalphacolor.c
|
libgstalphacolor_la_SOURCES = gstalphacolor.c
|
||||||
libgstalphacolor_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
libgstalphacolor_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
|
@ -14,7 +14,7 @@ libgstalphacolor_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
libgstalphacolor_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
libgstalphacolor_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstalphacolor_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstalphacolor_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstalphacolor_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstalphacolor_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstalpha.h gstalphacolor.h
|
noinst_HEADERS = gstalpha.h gstalphacolor.h
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ libgstapetag_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstapetag_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstapetag_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstapetag_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstapetag_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstapedemux.h
|
noinst_HEADERS = gstapedemux.h
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ libgstaudiofx_la_LIBADD = $(GST_LIBS) \
|
||||||
-lgstfft-$(GST_API_VERSION) \
|
-lgstfft-$(GST_API_VERSION) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaudiofx_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaudiofx_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = audiopanorama.h \
|
noinst_HEADERS = audiopanorama.h \
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstaudioparsers_la_LIBADD = \
|
||||||
-lgstaudio-$(GST_API_VERSION) \
|
-lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstaudioparsers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudioparsers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaudioparsers_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaudioparsers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstaacparse.h gstamrparse.h gstac3parse.h \
|
noinst_HEADERS = gstaacparse.h gstamrparse.h gstac3parse.h \
|
||||||
gstdcaparse.h gstflacparse.h gstmpegaudioparse.h gstsbcparse.h \
|
gstdcaparse.h gstflacparse.h gstmpegaudioparse.h gstsbcparse.h \
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstauparse_la_SOURCES = gstauparse.c
|
||||||
libgstauparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstauparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstauparse_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstauparse_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstauparse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstauparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstauparse.h
|
noinst_HEADERS = gstauparse.h
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ libgstautodetect_la_SOURCES = \
|
||||||
libgstautodetect_la_CFLAGS = $(GST_CFLAGS)
|
libgstautodetect_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstautodetect_la_LIBADD = $(GST_LIBS)
|
libgstautodetect_la_LIBADD = $(GST_LIBS)
|
||||||
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstautodetect_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstautodetect_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstautoaudiosink.h \
|
gstautoaudiosink.h \
|
||||||
|
|
|
@ -23,7 +23,7 @@ libgstavi_la_LIBADD = \
|
||||||
-lgstvideo-@GST_API_VERSION@
|
-lgstvideo-@GST_API_VERSION@
|
||||||
|
|
||||||
libgstavi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstavi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstavi_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstavi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = README
|
EXTRA_DIST = README
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstcutter_la_SOURCES = gstcutter.c
|
||||||
libgstcutter_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstcutter_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstcutter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(LIBM)
|
libgstcutter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(LIBM)
|
||||||
libgstcutter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcutter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcutter_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcutter_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcutter.h filter.func
|
noinst_HEADERS = gstcutter.h filter.func
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ libgstnavigationtest_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||||
libgstnavigationtest_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
libgstnavigationtest_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(LIBM)
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(LIBM)
|
||||||
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstnavigationtest_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstnavigationtest_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
libgstdebug_la_SOURCES = \
|
libgstdebug_la_SOURCES = \
|
||||||
gstdebug.c \
|
gstdebug.c \
|
||||||
|
@ -38,7 +38,7 @@ libgstdebug_la_SOURCES = \
|
||||||
libgstdebug_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
libgstdebug_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
||||||
libgstdebug_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstdebug_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdebug_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdebug_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -23,7 +23,7 @@ libgstdeinterlace_la_CFLAGS = \
|
||||||
libgstdeinterlace_la_LIBADD = \
|
libgstdeinterlace_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
||||||
libgstdeinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdeinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdeinterlace_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdeinterlace_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstdeinterlace.h \
|
gstdeinterlace.h \
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstdtmf_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstdtmf_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstrtp-@GST_API_VERSION@ \
|
libgstdtmf_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstrtp-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstdtmf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdtmf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdtmf_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdtmf_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgsteffectv_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgsteffectv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsteffectv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsteffectv_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsteffectv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gsteffectv.h gstaging.h gstdice.h gstedge.h \
|
noinst_HEADERS = gsteffectv.h gstaging.h gstdice.h gstedge.h \
|
||||||
gstquark.h gstrev.h gstshagadelic.h gstvertigo.h gstwarp.h gstop.h \
|
gstquark.h gstrev.h gstshagadelic.h gstvertigo.h gstwarp.h gstop.h \
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstequalizer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) \
|
-lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS) $(LIBM)
|
$(GST_LIBS) $(LIBM)
|
||||||
libgstequalizer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstequalizer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstequalizer_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstequalizer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstiirequalizer.h
|
noinst_HEADERS = gstiirequalizer.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstflv_la_LIBADD = -lgstpbutils-@GST_API_VERSION@ -lgstaudio-@GST_API_VERSION
|
||||||
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstflv_la_LDFLAGS = ${GST_PLUGIN_LDFLAGS}
|
libgstflv_la_LDFLAGS = ${GST_PLUGIN_LDFLAGS}
|
||||||
libgstflv_la_SOURCES = gstflvdemux.c gstflvmux.c
|
libgstflv_la_SOURCES = gstflvdemux.c gstflvmux.c
|
||||||
libgstflv_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstflv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstflvdemux.h gstflvmux.h amfdefs.h gstindex.h
|
noinst_HEADERS = gstflvdemux.h gstflvmux.h amfdefs.h gstindex.h
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstflxdec_la_SOURCES = gstflxdec.c flx_color.c
|
||||||
libgstflxdec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstflxdec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstflxdec_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
libgstflxdec_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstflxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstflxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstflxdec_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstflxdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = flx_fmt.h flx_color.h gstflxdec.h
|
noinst_HEADERS = flx_fmt.h flx_color.h gstflxdec.h
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ libgstgoom_la_SOURCES = \
|
||||||
libgstgoom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS) $(ARCH_CFLAGS) $(ORC_CFLAGS)
|
libgstgoom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS) $(ARCH_CFLAGS) $(ORC_CFLAGS)
|
||||||
libgstgoom_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(ORC_LIBS)
|
libgstgoom_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(ORC_LIBS)
|
||||||
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgoom_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgoom_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = $(PPC_FILES) $(MMX_FILES)
|
EXTRA_DIST = $(PPC_FILES) $(MMX_FILES)
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstgoom2k1_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CF
|
||||||
|
|
||||||
libgstgoom2k1_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
libgstgoom2k1_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstgoom2k1_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgoom2k1_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgoom2k1_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgoom2k1_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = filters.c
|
EXTRA_DIST = filters.c
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgsticydemux_la_SOURCES = gsticydemux.c
|
||||||
libgsticydemux_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgsticydemux_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgsticydemux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(ZLIB_LIBS)
|
libgsticydemux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(ZLIB_LIBS)
|
||||||
libgsticydemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsticydemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsticydemux_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsticydemux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gsticydemux.h
|
noinst_HEADERS = gsticydemux.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstid3demux_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_C
|
||||||
libgstid3demux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ \
|
libgstid3demux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ \
|
||||||
-lgstpbutils-@GST_API_VERSION@ $(GST_BASE_LIBS)
|
-lgstpbutils-@GST_API_VERSION@ $(GST_BASE_LIBS)
|
||||||
libgstid3demux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstid3demux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstid3demux_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstid3demux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstid3demux.h
|
noinst_HEADERS = gstid3demux.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstimagefreeze_la_SOURCES = gstimagefreeze.c
|
||||||
libgstimagefreeze_la_CFLAGS = $(GST_CFLAGS)
|
libgstimagefreeze_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstimagefreeze_la_LIBADD = $(GST_LIBS)
|
libgstimagefreeze_la_LIBADD = $(GST_LIBS)
|
||||||
libgstimagefreeze_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstimagefreeze_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstimagefreeze_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstimagefreeze_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstimagefreeze.h
|
noinst_HEADERS = gstimagefreeze.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstinterleave_la_SOURCES = plugin.c interleave.c deinterleave.c
|
||||||
libgstinterleave_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstinterleave_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstinterleave_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS)
|
libgstinterleave_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstinterleave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstinterleave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstinterleave_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstinterleave_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = plugin.h interleave.h deinterleave.h
|
noinst_HEADERS = plugin.h interleave.h deinterleave.h
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ libgstisomp4_la_SOURCES = isomp4-plugin.c gstrtpxqtdepay.c \
|
||||||
qtdemux.c qtdemux_types.c qtdemux_dump.c qtdemux_lang.c \
|
qtdemux.c qtdemux_types.c qtdemux_dump.c qtdemux_lang.c \
|
||||||
gstqtmux.c gstqtmoovrecover.c atoms.c atomsrecovery.c descriptors.c \
|
gstqtmux.c gstqtmoovrecover.c atoms.c atomsrecovery.c descriptors.c \
|
||||||
properties.c gstqtmuxmap.c
|
properties.c gstqtmuxmap.c
|
||||||
libgstisomp4_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstisomp4_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
qtatomparser.h \
|
qtatomparser.h \
|
||||||
|
|
|
@ -5,14 +5,14 @@ libgstalaw_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstalaw_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
libgstalaw_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstalaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstalaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstalaw_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstalaw_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
libgstmulaw_la_SOURCES = mulaw-encode.c mulaw-conversion.c mulaw-decode.c mulaw.c
|
libgstmulaw_la_SOURCES = mulaw-encode.c mulaw-conversion.c mulaw-decode.c mulaw.c
|
||||||
libgstmulaw_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstmulaw_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstmulaw_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
libgstmulaw_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstmulaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmulaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmulaw_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmulaw_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = mulaw-conversion.h alaw-encode.h alaw-decode.h mulaw-encode.h mulaw-decode.h
|
noinst_HEADERS = mulaw-conversion.h alaw-encode.h alaw-decode.h mulaw-encode.h mulaw-decode.h
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstlevel_la_SOURCES = gstlevel.c
|
||||||
libgstlevel_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstlevel_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstlevel_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(LIBM)
|
libgstlevel_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(LIBM)
|
||||||
libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstlevel_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstlevel_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstlevel.h
|
noinst_HEADERS = gstlevel.h
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ libgstmatroska_la_LIBADD = \
|
||||||
$(BZ2_LIBS) \
|
$(BZ2_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmatroska_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmatroska_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
|
|
|
@ -7,7 +7,7 @@ noinst_HEADERS = gstmonoscope.h monoscope.h convolve.h
|
||||||
libgstmonoscope_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS)
|
libgstmonoscope_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS)
|
||||||
libgstmonoscope_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstmonoscope_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstmonoscope_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmonoscope_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmonoscope_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmonoscope_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstmultifile_la_SOURCES = \
|
||||||
libgstmultifile_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
libgstmultifile_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
||||||
libgstmultifile_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(GIO_LIBS)
|
libgstmultifile_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(GIO_LIBS)
|
||||||
libgstmultifile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmultifile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmultifile_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmultifile_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmultifilesrc.h gstmultifilesink.h gstsplitfilesrc.h patternspec.h
|
noinst_HEADERS = gstmultifilesrc.h gstmultifilesink.h gstsplitfilesrc.h patternspec.h
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libgstmultipart_la_SOURCES = multipart.c multipartdemux.c multipartmux.c
|
||||||
libgstmultipart_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
libgstmultipart_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
||||||
libgstmultipart_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstmultipart_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstmultipart_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmultipart_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmultipart_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmultipart_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = multipartdemux.h multipartmux.h
|
noinst_HEADERS = multipartdemux.h multipartmux.h
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstreplaygain_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION)\
|
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION)\
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstreplaygain_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstreplaygain_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstreplaygain_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstreplaygain_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -89,7 +89,7 @@ libgstrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstrtp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrtp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
dboolhuff.h \
|
dboolhuff.h \
|
||||||
|
|
|
@ -48,7 +48,7 @@ libgstrtpmanager_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_NET_LIBS) -lgstrtp-@GST_API_VERSION@ \
|
$(GST_NET_LIBS) -lgstrtp-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS_LIBS)
|
||||||
libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstrtpmanager_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrtpmanager_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
CLEANFILES = $(BUILT_SOURCES)
|
CLEANFILES = $(BUILT_SOURCES)
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstrtsp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(GST_BASE_LIBS) \
|
||||||
-lgstrtp-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ \
|
-lgstrtp-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ \
|
||||||
-lgstsdp-@GST_API_VERSION@ -lgstnet-@GST_API_VERSION@ $(GST_LIBS)
|
-lgstsdp-@GST_API_VERSION@ -lgstnet-@GST_API_VERSION@ $(GST_LIBS)
|
||||||
libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstrtsp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrtsp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstrtspsrc.h \
|
noinst_HEADERS = gstrtspsrc.h \
|
||||||
gstrtsp.h \
|
gstrtsp.h \
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstshapewipe_la_SOURCES = gstshapewipe.c
|
||||||
libgstshapewipe_la_CFLAGS = $(GIO_CFLAGS) $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstshapewipe_la_CFLAGS = $(GIO_CFLAGS) $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstshapewipe_la_LIBADD = $(GIO_LIBS) $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@
|
libgstshapewipe_la_LIBADD = $(GIO_LIBS) $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@
|
||||||
libgstshapewipe_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstshapewipe_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstshapewipe_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstshapewipe_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstshapewipe.h
|
noinst_HEADERS = gstshapewipe.h
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstsmpte_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LIBM) \
|
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LIBM) \
|
||||||
-lgstvideo-$(GST_API_VERSION)
|
-lgstvideo-$(GST_API_VERSION)
|
||||||
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsmpte_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsmpte_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstspectrum_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstfft-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION) \
|
-lgstfft-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstspectrum_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstspectrum_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstspectrum.h
|
noinst_HEADERS = gstspectrum.h
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ libgstudp_la_SOURCES = gstudp.c gstudpsrc.c gstudpsink.c gstmultiudpsink.c gstdy
|
||||||
libgstudp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_NET_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
libgstudp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_NET_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
||||||
libgstudp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_NET_LIBS) $(GIO_LIBS)
|
libgstudp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_NET_LIBS) $(GIO_LIBS)
|
||||||
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstudp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstudp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
nodist_libgstudp_la_SOURCES = \
|
nodist_libgstudp_la_SOURCES = \
|
||||||
$(built_sources)
|
$(built_sources)
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstvideobox_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(ORC_LIBS) \
|
$(ORC_LIBS) \
|
||||||
-lgstvideo-@GST_API_VERSION@
|
-lgstvideo-@GST_API_VERSION@
|
||||||
libgstvideobox_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideobox_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvideobox_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideobox_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstvideobox.h
|
noinst_HEADERS = gstvideobox.h
|
||||||
EXTRA_DIST += README
|
EXTRA_DIST += README
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstvideocrop_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||||
$(GST_PLUGINS_BASE_CFLAGS)
|
$(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
libgstvideocrop_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
||||||
libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideocrop_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvideocrop_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideocrop_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstvideocrop.h gstaspectratiocrop.h
|
noinst_HEADERS = gstvideocrop.h gstaspectratiocrop.h
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-@GST_API_VERSION@ \
|
-lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstvideofilter_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideofilter_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
|
gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
|
||||||
$(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c
|
$(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstvideomixer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-@GST_API_VERSION@ \
|
-lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
||||||
libgstvideomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvideomixer_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideomixer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstwavenc_la_LIBADD = \
|
||||||
-lgstriff-@GST_API_VERSION@ \
|
-lgstriff-@GST_API_VERSION@ \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstwavenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwavenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwavenc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwavenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwavenc.h
|
noinst_HEADERS = gstwavenc.h
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstwavparse_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwavparse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwavparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwavparse.h
|
noinst_HEADERS = gstwavparse.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgsty4menc_la_SOURCES = gsty4mencode.c
|
||||||
libgsty4menc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
libgsty4menc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgsty4menc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS)
|
libgsty4menc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS)
|
||||||
libgsty4menc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsty4menc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsty4menc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsty4menc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gsty4mencode.h
|
noinst_HEADERS = gsty4mencode.h
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,6 @@ libgstdirectsoundsink_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(DIRECTSOUND_LIBS)
|
$(DIRECTSOUND_LIBS)
|
||||||
libgstdirectsoundsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DIRECTSOUND_LDFLAGS)
|
libgstdirectsoundsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DIRECTSOUND_LDFLAGS)
|
||||||
libgstdirectsoundsink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdirectsoundsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdirectsoundsink.h
|
noinst_HEADERS = gstdirectsoundsink.h
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstossaudio_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstossaudio_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstossaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = common.h \
|
noinst_HEADERS = common.h \
|
||||||
gstosssink.h \
|
gstosssink.h \
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstoss4audio_la_LIBADD = \
|
||||||
-lgstaudio-$(GST_API_VERSION) \
|
-lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstoss4audio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstoss4audio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstoss4audio_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstoss4audio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
oss4-audio.h \
|
oss4-audio.h \
|
||||||
|
|
|
@ -23,7 +23,7 @@ if !HAVE_IOS
|
||||||
libgstosxaudio_la_LDFLAGS += -Wl,-framework,AudioUnit -Wl,-framework,CoreServices
|
libgstosxaudio_la_LDFLAGS += -Wl,-framework,AudioUnit -Wl,-framework,CoreServices
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libgstosxaudio_la_LIBTOOLFLAGS = --tag=disable-static --tag=CC
|
libgstosxaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
||||||
|
|
||||||
noinst_HEADERS = gstosxaudiosink.h \
|
noinst_HEADERS = gstosxaudiosink.h \
|
||||||
gstosxaudioelement.h \
|
gstosxaudioelement.h \
|
||||||
|
|
|
@ -13,6 +13,6 @@ libgstosxvideosink_la_LIBADD = \
|
||||||
-lgstvideo-$(GST_API_VERSION)
|
-lgstvideo-$(GST_API_VERSION)
|
||||||
|
|
||||||
libgstosxvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,Cocoa -Wl,-framework -Wl,QuickTime -Wl,-framework -Wl,OpenGL
|
libgstosxvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,Cocoa -Wl,-framework -Wl,QuickTime -Wl,-framework -Wl,OpenGL
|
||||||
libgstosxvideosink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstosxvideosink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = osxvideosink.h cocoawindow.h
|
noinst_HEADERS = osxvideosink.h cocoawindow.h
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstsunaudio_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) \
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstsunaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsunaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsunaudio_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsunaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsunaudiosink.h \
|
noinst_HEADERS = gstsunaudiosink.h \
|
||||||
gstsunaudiomixer.h \
|
gstsunaudiomixer.h \
|
||||||
|
|
|
@ -54,7 +54,7 @@ libgstvideo4linux2_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
$(GUDEV_CFLAGS)
|
$(GUDEV_CFLAGS)
|
||||||
|
|
||||||
libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvideo4linux2_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvideo4linux2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
libgstvideo4linux2_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
libgstvideo4linux2_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstallocators-$(GST_API_VERSION) \
|
-lgstallocators-$(GST_API_VERSION) \
|
||||||
-lgstvideo-$(GST_API_VERSION) \
|
-lgstvideo-$(GST_API_VERSION) \
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstwaveformsink_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
-lwinmm
|
-lwinmm
|
||||||
libgstwaveformsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwaveformsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwaveformsink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwaveformsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwaveformsink.h
|
noinst_HEADERS = gstwaveformsink.h
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,6 @@ libgstximagesrc_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(X_LIBS) $(XSHM_LIBS) $(XFIXES_LIBS) $(XDAMAGE_LIBS)
|
$(X_LIBS) $(XSHM_LIBS) $(XFIXES_LIBS) $(XDAMAGE_LIBS)
|
||||||
libgstximagesrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstximagesrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstximagesrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstximagesrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstximagesrc.h ximageutil.h
|
noinst_HEADERS = gstximagesrc.h ximageutil.h
|
||||||
|
|
Loading…
Reference in a new issue