mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
This commit is contained in:
parent
1c6cd54477
commit
4261692187
151 changed files with 5 additions and 183 deletions
|
@ -85,9 +85,6 @@
|
|||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||
#mesondefine GST_PACKAGE_RELEASE_DATETIME
|
||||
|
||||
/* Define if static plugins should be built */
|
||||
#mesondefine GST_PLUGIN_BUILD_STATIC
|
||||
|
||||
/* Define to enable Windows ACM library (used by acm). */
|
||||
#mesondefine HAVE_ACM
|
||||
|
||||
|
|
22
configure.ac
22
configure.ac
|
@ -387,28 +387,6 @@ AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
|
|||
["${srcdir}/gst-plugins-bad.doap"],
|
||||
[$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")
|
||||
|
||||
dnl If only building static libraries, define GST_STATIC_COMPILATION. This is
|
||||
dnl needed only on Windows, but it doesn't hurt to have it everywhere.
|
||||
if test x$enable_static = xyes -a x$enable_shared = xno; then
|
||||
|
|
|
@ -4,6 +4,5 @@ libgstassrender_la_SOURCES = gstassrender.c
|
|||
libgstassrender_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ASSRENDER_CFLAGS)
|
||||
libgstassrender_la_LIBADD = $(ASSRENDER_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) -lgstvideo-@GST_API_VERSION@
|
||||
libgstassrender_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstassrender_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstassrender.h
|
||||
|
|
|
@ -10,6 +10,5 @@ libgstbs2b_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(BS2B_LIBS)
|
||||
libgstbs2b_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstbs2b_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstbs2b.h
|
||||
|
|
|
@ -6,7 +6,6 @@ libgstbz2_la_SOURCES = \
|
|||
libgstbz2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstbz2_la_LIBADD = $(GST_BASE_LIBS) $(BZ2_LIBS)
|
||||
libgstbz2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstbz2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstbz2dec.h gstbz2enc.h
|
||||
|
|
|
@ -10,6 +10,5 @@ libgstchromaprint_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(CHROMAPRINT_LIBS)
|
||||
libgstchromaprint_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstchromaprint_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstchromaprint.h
|
||||
|
|
|
@ -28,7 +28,6 @@ libgstcurl_la_LIBADD = \
|
|||
$(SSH2_LIBS) \
|
||||
$(CURL_LIBS)
|
||||
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstcurl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstcurlbasesink.h \
|
||||
gstcurltlssink.h \
|
||||
|
|
|
@ -16,5 +16,4 @@ libgstdaala_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(DAALA_LIBS)
|
||||
libgstdaala_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdaala_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
|
|
@ -32,5 +32,4 @@ libgstdashdemux_la_LIBADD = \
|
|||
$(GIO_LIBS) \
|
||||
$(LIBXML2_LIBS)
|
||||
libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdashdemux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
|
|
@ -15,8 +15,6 @@ libgstdc1394_la_LIBADD = \
|
|||
$(GST_LIBS)
|
||||
libgstdc1394_la_LDFLAGS = \
|
||||
$(GST_PLUGIN_LDFLAGS)
|
||||
libgstdc1394_la_LIBTOOLFLAGS = \
|
||||
$(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstdc1394src.h
|
||||
|
|
|
@ -8,7 +8,6 @@ libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
-lgstvideo-$(GST_API_VERSION) \
|
||||
$(DIRECTFB_LIBS)
|
||||
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdfbvideosink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = dfbvideosink.h
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@ libgstdtls_la_CFLAGS = \
|
|||
|
||||
libgstdtls_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(DTLS_LIBS)
|
||||
libgstdtls_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdtls_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstdtlsdec.h \
|
||||
|
|
|
@ -7,6 +7,5 @@ libgstdtsdec_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) \
|
|||
-lgstaudio-@GST_API_VERSION@ \
|
||||
$(DTS_LIBS) $(ORC_LIBS)
|
||||
libgstdtsdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdtsdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstdtsdec.h
|
||||
|
|
|
@ -8,6 +8,5 @@ libgstfaac_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
-lgstaudio-@GST_API_VERSION@ -lgstpbutils-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(FAAC_LIBS)
|
||||
libgstfaac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfaac_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfaac.h
|
||||
|
|
|
@ -7,6 +7,5 @@ libgstfaad_la_CFLAGS = \
|
|||
libgstfaad_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(FAAD_LIBS) $(LIBM)
|
||||
libgstfaad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfaad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfaad.h
|
||||
|
|
|
@ -8,6 +8,5 @@ libgstfdkaac_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
-lgstaudio-@GST_API_VERSION@ -lgstpbutils-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(FDK_AAC_LIBS)
|
||||
libgstfdkaac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfdkaac_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfdkaacenc.h gstfdkaacdec.h
|
||||
|
|
|
@ -12,6 +12,5 @@ libgstflite_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(FLITE_LIBS)
|
||||
libgstflite_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||
libgstflite_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@ libgstfluidsynthmidi_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|||
$(GST_BASE_CFLAGS) $(FLUIDSYNTH_CFLAGS)
|
||||
libgstfluidsynthmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(FLUIDSYNTH_LIBS)
|
||||
libgstfluidsynthmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfluidsynthmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
endif
|
||||
|
||||
noinst_HEADERS = gstfluiddec.h
|
||||
|
|
|
@ -160,6 +160,6 @@ libgstopengl_la_LIBADD = \
|
|||
$(GRAPHENE_LIBS)
|
||||
|
||||
libgstopengl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopengl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
||||
libgstopengl_la_LIBTOOLFLAGS = --tag=CC
|
||||
|
||||
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstgme_la_SOURCES = gstgme.c
|
|||
libgstgme_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GME_CFLAGS)
|
||||
libgstgme_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GME_LIBS)
|
||||
libgstgme_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgme_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstgme.h
|
||||
|
|
|
@ -10,6 +10,5 @@ libgstgsm_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS)
|
||||
libgstgsm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgsm_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstgsmenc.h gstgsmdec.h
|
||||
|
|
|
@ -36,7 +36,6 @@ libgstgtk_la_LIBADD = \
|
|||
|
||||
libgstgtk_la_SOURCES = $(sources)
|
||||
libgstgtk_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgtk_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
if USE_GTK3_GL
|
||||
if USE_GL
|
||||
|
|
|
@ -17,7 +17,6 @@ libgsthls_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) -lgsttag-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(LIBGCRYPT_LIBS) $(NETTLE_LIBS) $(OPENSSL_LIBS)
|
||||
libgsthls_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
||||
libgsthls_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -20,7 +20,6 @@ libgstiqa_la_LIBADD = \
|
|||
libgstiqa_la_LIBADD += $(DSSIM_LIBS)
|
||||
|
||||
libgstiqa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstiqa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
iqa.h
|
||||
|
|
|
@ -12,7 +12,6 @@ libgstkate_la_SOURCES = gstkate.c gstkatedec.c gstkateenc.c gstkateparse.c gstka
|
|||
libgstkate_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TIGER_CFLAGS) $(KATE_CFLAGS)
|
||||
libgstkate_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) -lgsttag-$(GST_API_VERSION) $(GST_LIBS) $(TIGER_LIBS) $(KATE_LIBS)
|
||||
libgstkate_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstkate_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstkate.h gstkatedec.h gstkateenc.h gstkateparse.h gstkatetag.h gstkateutil.h gstkatespu.h gstkatetiger.h
|
||||
|
|
|
@ -23,7 +23,6 @@ libgstladspa_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(GMODULE_NO_EXPORT_LIBS)
|
||||
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstladspa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstladspautils.h \
|
||||
|
|
|
@ -9,7 +9,6 @@ libgstlibde265_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_C
|
|||
libgstlibde265_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(LIBDE265_LIBS)
|
||||
libgstlibde265_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstlibde265_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
libde265-dec.h
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstmms_la_SOURCES = gstmms.c
|
|||
libgstmms_la_CFLAGS = $(GST_CFLAGS) $(LIBMMS_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||
libgstmms_la_LIBADD = $(GST_LIBS) $(LIBMMS_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS)
|
||||
libgstmms_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstmms_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstmms.h
|
||||
|
|
|
@ -13,6 +13,5 @@ libgstlv2_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||
$(LIBM) $(LILV_LIBS)
|
||||
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstlv2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstlv2.h gstlv2utils.h
|
||||
|
|
|
@ -4,6 +4,5 @@ libgstmodplug_la_SOURCES = gstmodplug.cc
|
|||
libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MODPLUG_CFLAGS)
|
||||
libgstmodplug_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(LIBM) $(MODPLUG_LIBS)
|
||||
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstmodplug_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstmodplug.h
|
||||
|
|
|
@ -13,7 +13,6 @@ libgstmpeg2enc_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
||||
$(GST_LIBS) $(MPEG2ENC_LIBS)
|
||||
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstmpeg2enc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstmpeg2enc.hh \
|
||||
|
|
|
@ -12,7 +12,6 @@ libgstmplex_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||
$(GST_LIBS) $(MPLEX_LIBS)
|
||||
libgstmplex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(MPLEX_LDFLAGS)
|
||||
libgstmplex_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstmplex.hh \
|
||||
|
|
|
@ -6,7 +6,6 @@ libgstmusepack_la_SOURCES = \
|
|||
libgstmusepack_la_CFLAGS = $(MUSEPACK_CFLAGS) $(GST_CFLAGS)
|
||||
libgstmusepack_la_LIBADD = $(MUSEPACK_LIBS) $(GST_LIBS)
|
||||
libgstmusepack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstmusepack_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstmusepackdec.h \
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstneonhttpsrc_la_SOURCES = gstneonhttpsrc.c
|
|||
libgstneonhttpsrc_la_CFLAGS = $(GST_CFLAGS) $(NEON_CFLAGS)
|
||||
libgstneonhttpsrc_la_LIBADD = $(GST_BASE_LIBS) $(NEON_LIBS)
|
||||
libgstneonhttpsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstneonhttpsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstneonhttpsrc.h
|
||||
|
|
|
@ -14,6 +14,5 @@ libgstofa_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
$(OFA_LIBS)
|
||||
|
||||
libgstofa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstofa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstofa.h
|
||||
|
|
|
@ -9,7 +9,6 @@ libgstopenal_la_SOURCES = gstopenal.c gstopenalsink.c gstopenalsrc.c
|
|||
libgstopenal_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(OPENAL_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS)
|
||||
libgstopenal_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(OPENAL_LIBS)
|
||||
libgstopenal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopenal_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstopenalsink.h gstopenalsrc.h
|
||||
|
|
|
@ -47,7 +47,6 @@ libgstopencv_la_LIBADD = \
|
|||
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
||||
|
||||
libgstopencv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopencv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -11,7 +11,6 @@ libgstopenexr_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(OPENEXR_LIBS)
|
||||
libgstopenexr_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopenexr_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstopenexrdec.h \
|
||||
|
|
|
@ -9,7 +9,6 @@ libgstopenh264_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(OPENH264_C
|
|||
libgstopenh264_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(OPENH264_CFLAGS)
|
||||
libgstopenh264_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-1.0 $(GST_LIBS) $(OPENH264_LIBS)
|
||||
libgstopenh264_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopenh264_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstopenh264dec.h \
|
||||
|
|
|
@ -8,7 +8,6 @@ libgstopenjpeg_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||
$(GST_LIBS) $(OPENJPEG_LIBS)
|
||||
libgstopenjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopenjpeg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstopenjpegdec.h \
|
||||
|
|
|
@ -16,7 +16,6 @@ libgstopenni2_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(OPENNI2_LIBS) \
|
|||
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
||||
|
||||
libgstopenni2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstopenni2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstopenni2src.h
|
||||
noinst_HEADERS = gstopenni2src.h
|
||||
|
|
|
@ -15,6 +15,5 @@ libgstopusparse_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(OPUS_LIBS)
|
||||
libgstopusparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||
libgstopusparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstopusparse.h gstopusheader.h
|
||||
|
|
|
@ -48,7 +48,6 @@ libgstqmlgl_la_LIBADD = \
|
|||
-lgstvideo-$(GST_API_VERSION)
|
||||
|
||||
libgstqmlgl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstqmlgl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
||||
$(moc_generated): moc_%.cc: %.h
|
||||
|
|
|
@ -21,7 +21,6 @@ libgstresindvd_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
-lgsttag-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS) $(DVDNAV_LIBS)
|
||||
libgstresindvd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstresindvd_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = resindvdbin.h \
|
||||
rsndec.h \
|
||||
|
|
|
@ -11,6 +11,5 @@ libgstrsvg_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(RSVG_LIBS)
|
||||
libgstrsvg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||
libgstrsvg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstrsvgdec.h gstrsvgoverlay.h
|
||||
|
|
|
@ -6,5 +6,3 @@ noinst_HEADERS = gstrtmpsrc.h gstrtmpsink.h
|
|||
libgstrtmp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(RTMP_CFLAGS)
|
||||
libgstrtmp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(RTMP_LIBS) $(WINSOCK2_LIBS)
|
||||
libgstrtmp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstrtmp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
|
|
@ -19,4 +19,3 @@ libgstsbc_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(SBC_LIBS)
|
||||
libgstsbc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsbc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -20,6 +20,5 @@ libgstschro_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(SCHRO_LIBS)
|
||||
libgstschro_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstschro_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@ libgstsmoothstreaming_la_SOURCES = gstsmoothstreaming-plugin.c \
|
|||
gstmssdemux.c \
|
||||
gstmssfragmentparser.c \
|
||||
gstmssmanifest.c
|
||||
libgstsmoothstreaming_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstmssdemux.h \
|
||||
gstmssfragmentparser.h \
|
||||
|
|
|
@ -4,6 +4,5 @@ libgstsndfile_la_SOURCES = gstsf.c gstsfdec.c
|
|||
libgstsndfile_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SNDFILE_CFLAGS)
|
||||
libgstsndfile_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(SNDFILE_LIBS)
|
||||
libgstsndfile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsndfile_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstsf.h gstsfdec.h
|
||||
|
|
|
@ -9,6 +9,5 @@ libgstsoundtouch_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST
|
|||
libgstsoundtouch_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(SOUNDTOUCH_CFLAGS)
|
||||
libgstsoundtouch_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(SOUNDTOUCH_LIBS) $(LIBM)
|
||||
libgstsoundtouch_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsoundtouch_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstpitch.hh gstbpmdetect.hh
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstspandsp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(SPANDSP_CFL
|
|||
libgstspandsp_la_LIBADD = $(SPANDSP_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||
libgstspandsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstspandsp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstspanplc.h gstdtmfdetect.h gsttonegeneratesrc.h
|
||||
|
|
|
@ -5,7 +5,6 @@ libgstspc_la_SOURCES = gstspc.c tag.c
|
|||
libgstspc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SPC_CFLAGS)
|
||||
libgstspc_la_LIBADD = $(GST_LIBS) $(SPC_LIBS)
|
||||
libgstspc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstspc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstspc.h tag.h
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@ libgstsrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
$(GST_LIBS) \
|
||||
$(SRTP_LIBS)
|
||||
libgstsrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsrtp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
glib_enum_headers=gstsrtp.h
|
||||
glib_enum_define=GST_SRTP
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstteletext_la_SOURCES = gstteletextdec.c
|
|||
libgstteletext_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TELETEXTDEC_CFLAGS)
|
||||
libgstteletext_la_LIBADD = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_LIBS) $(TELETEXTDEC_LIBS)
|
||||
libgstteletext_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstteletext_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstteletextdec.h
|
||||
|
|
|
@ -26,7 +26,6 @@ libgstttmlsubs_la_LIBADD = \
|
|||
$(LIBM)
|
||||
|
||||
libgstttmlsubs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstttmlsubs_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -17,7 +17,6 @@ libgstvoaacenc_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(VOAACENC_LIBS)
|
||||
libgstvoaacenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvoaacenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstvoaacenc.h
|
||||
|
|
|
@ -9,7 +9,6 @@ libgstvoamrwbenc_la_CFLAGS = -DGST_USE_UNSTABLE_API \
|
|||
libgstvoamrwbenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(VOAMRWBENC_LIBS)
|
||||
libgstvoamrwbenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvoamrwbenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstvoamrwbenc.h
|
||||
|
|
|
@ -73,6 +73,5 @@ libgstvulkan_la_LIBADD += wayland/libgstvulkan-wayland.la
|
|||
endif
|
||||
|
||||
libgstvulkan_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvulkan_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
||||
|
|
|
@ -31,7 +31,6 @@ libgstwaylandsink_la_LIBADD = \
|
|||
-lgstallocators-$(GST_API_VERSION) \
|
||||
$(WAYLAND_LIBS)
|
||||
libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstwaylandsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstwaylandsink.h \
|
||||
|
|
|
@ -14,5 +14,3 @@ libgstwebp_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(WEBP_LIBS)
|
||||
libgstwebp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstwebp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@ libgstwildmidi_la_SOURCES = gstwildmidi.c
|
|||
libgstwildmidi_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(WILDMIDI_CFLAGS)
|
||||
libgstwildmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WILDMIDI_LIBS)
|
||||
libgstwildmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstwildmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
endif
|
||||
|
||||
noinst_HEADERS = gstwildmidi.h
|
||||
|
|
|
@ -12,6 +12,5 @@ libgstx265_la_LIBADD = \
|
|||
$(GST_LIBS) \
|
||||
$(X265_LIBS)
|
||||
libgstx265_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstx265_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstx265enc.h
|
||||
|
|
|
@ -5,7 +5,6 @@ libgstzbar_la_SOURCES = gstzbar.c
|
|||
libgstzbar_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ZBAR_CFLAGS)
|
||||
libgstzbar_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(ZBAR_LIBS)
|
||||
libgstzbar_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstzbar_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstzbar.h
|
||||
|
||||
|
|
|
@ -39,4 +39,4 @@ libgstgl_cocoa_la_LDFLAGS = \
|
|||
$(GST_LIB_LDFLAGS) \
|
||||
$(GST_ALL_LDFLAGS)
|
||||
|
||||
libgstgl_cocoa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
||||
libgstgl_cocoa_la_LIBTOOLFLAGS = --tag=CC
|
||||
|
|
|
@ -32,4 +32,4 @@ libgstgl_eagl_la_LDFLAGS = \
|
|||
$(GST_LIB_LDFLAGS) \
|
||||
$(GST_ALL_LDFLAGS)
|
||||
|
||||
libgstgl_eagl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
||||
libgstgl_eagl_la_LIBTOOLFLAGS = --tag=CC
|
||||
|
|
|
@ -10,6 +10,5 @@ libgstaccurip_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
$(ACCURIP_LIBS)
|
||||
libgstaccurip_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaccurip_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstaccurip.h
|
||||
|
|
|
@ -10,4 +10,3 @@ libgstadpcmdec_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||
libgstadpcmdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstadpcmdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -9,4 +9,3 @@ libgstadpcmenc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|||
libgstadpcmenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_LIBS)
|
||||
libgstadpcmenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstadpcmenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -13,4 +13,3 @@ libgstaiff_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) \
|
||||
$(LIBM)
|
||||
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaiff_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -15,7 +15,6 @@ libgstasfmux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(
|
|||
libgstasfmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstrtp-@GST_API_VERSION@
|
||||
libgstasfmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstasfmux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstasfmux.h \
|
||||
|
|
|
@ -9,6 +9,5 @@ libgstaudiobuffersplit_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||
libgstaudiobuffersplit_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiobuffersplit_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstaudiobuffersplit.h
|
||||
|
|
|
@ -10,4 +10,3 @@ libgstaudiofxbad_la_LIBADD = \
|
|||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||
libgstaudiofxbad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiofxbad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -17,7 +17,6 @@ libgstaudiomixer_la_LIBADD = \
|
|||
$(top_builddir)/gst-libs/gst/audio/libgstbadaudio-$(GST_API_VERSION).la \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
||||
libgstaudiomixer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstaudiomixer.h gstaudiointerleave.h
|
||||
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstaudiomixmatrix_la_SOURCES = gstaudiomixmatrix.c
|
|||
libgstaudiomixmatrix_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstaudiomixmatrix_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||
libgstaudiomixmatrix_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiomixmatrix_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstaudiomixmatrix.h
|
||||
|
|
|
@ -14,7 +14,6 @@ libgstaudiovisualizers_la_LIBADD = \
|
|||
-lgstvideo-$(GST_API_VERSION) -lgstfft-$(GST_API_VERSION) \
|
||||
-lgstpbutils-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||
libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiovisualizers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstdrawhelpers.h \
|
||||
gstspacescope.h \
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstautoconvert_la_SOURCES = gstautoconvert.c gstautovideoconvert.c plugin.c
|
|||
libgstautoconvert_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstautoconvert_la_LIBADD = $(GST_LIBS)
|
||||
libgstautoconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstautoconvert_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstautoconvert.h gstautovideoconvert.h
|
||||
|
|
|
@ -18,5 +18,4 @@ libgstbayer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
|||
$(ORC_LIBS) \
|
||||
$(GST_BASE_LIBS)
|
||||
libgstbayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstbayer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
nodist_libgstbayer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
||||
|
|
|
@ -20,7 +20,6 @@ libgstcamerabin_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||
|
||||
libgstcamerabin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstcamerabin_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstviewfinderbin.h \
|
||||
camerabingeneral.h \
|
||||
|
|
|
@ -13,6 +13,5 @@ libgstcoloreffects_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS)
|
||||
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstcoloreffects_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstcoloreffects.h gstchromahold.h
|
||||
|
|
|
@ -22,7 +22,6 @@ libgstcompositor_la_LIBADD = \
|
|||
-lgstvideo-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS) $(LIBM)
|
||||
libgstcompositor_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstcompositor_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -15,7 +15,6 @@ libgstdebugutilsbad_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|||
-lgstvideo-$(GST_API_VERSION) \
|
||||
$(GST_LIBS)
|
||||
libgstdebugutilsbad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdebugutilsbad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = fpsdisplaysink.h \
|
||||
gstchecksumsink.h \
|
||||
|
|
|
@ -5,6 +5,5 @@ libgstdvbsuboverlay_la_SOURCES = dvb-sub.c gstdvbsuboverlay.c
|
|||
libgstdvbsuboverlay_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstdvbsuboverlay_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_LIBS)
|
||||
libgstdvbsuboverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdvbsuboverlay_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstdvbsuboverlay.h dvb-sub.h
|
||||
|
|
|
@ -7,7 +7,6 @@ libgstdvdspu_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(
|
|||
libgstdvdspu_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||
$(GST_LIBS)
|
||||
libgstdvdspu_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdvdspu_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstdvdspu.h gstspu-pgs.h gstspu-vobsub.h gstspu-common.h
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ libgstfaceoverlay_la_SOURCES = gstfaceoverlay.c
|
|||
libgstfaceoverlay_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstfaceoverlay_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_LIBS)
|
||||
libgstfaceoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfaceoverlay_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstfaceoverlay.h
|
||||
|
|
|
@ -8,6 +8,5 @@ libgstfestival_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|||
libgstfestival_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-1.0 $(WINSOCK2_LIBS)
|
||||
libgstfestival_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfestival_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfestival.h
|
||||
|
|
|
@ -19,6 +19,5 @@ libgstfieldanalysis_la_LIBADD = \
|
|||
$(ORC_LIBS)
|
||||
|
||||
libgstfieldanalysis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfieldanalysis_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfieldanalysis.h
|
||||
|
|
|
@ -14,7 +14,6 @@ libgstfreeverb_la_LIBADD = $(GST_LIBS) \
|
|||
-lgstaudio-$(GST_API_VERSION) \
|
||||
$(LIBM)
|
||||
libgstfreeverb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfreeverb_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = gstfreeverb.h
|
||||
|
|
|
@ -10,6 +10,5 @@ libgstfrei0r_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFL
|
|||
libgstfrei0r_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS)
|
||||
libgstfrei0r_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfrei0r_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstfrei0r.h gstfrei0rfilter.h gstfrei0rsrc.h gstfrei0rmixer.h frei0r.h
|
||||
|
|
|
@ -26,7 +26,6 @@ libgstgaudieffects_la_LIBADD = \
|
|||
$(LIBM) \
|
||||
$(ORC_LIBS)
|
||||
libgstgaudieffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgaudieffects_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
# headers we need but don't want installed
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -9,7 +9,6 @@ libgstgdp_la_SOURCES = \
|
|||
libgstgdp_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstgdp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
||||
libgstgdp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgdp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
dataprotocol.h \
|
||||
|
|
|
@ -28,7 +28,6 @@ libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS) $(LIBM)
|
||||
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstgeometrictransform_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstgeometrictransform.h \
|
||||
gstcirclegeometrictransform.h \
|
||||
|
|
|
@ -13,6 +13,5 @@ libgstid3tag_la_LIBADD = \
|
|||
$(GST_LIBS)
|
||||
|
||||
libgstid3tag_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstid3tag_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstid3mux.h id3tag.h
|
||||
|
|
|
@ -34,7 +34,6 @@ libgstinter_la_LIBADD = \
|
|||
$(LIBM)
|
||||
|
||||
libgstinter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstinter_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
gstintertest_SOURCES = \
|
||||
gstintertest.c
|
||||
|
|
|
@ -13,4 +13,3 @@ libgstinterlace_la_LIBADD = \
|
|||
$(LIBM)
|
||||
|
||||
libgstinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstinterlace_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -8,6 +8,5 @@ libgstivfparse_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS)
|
||||
libgstivfparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstivfparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstivfparse.h
|
||||
|
|
|
@ -8,4 +8,3 @@ libgstivtc_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|||
libgstivtc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-1.0 \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||
libgstivtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstivtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
|
@ -9,6 +9,5 @@ libgstjp2kdecimator_la_CFLAGS = \
|
|||
libgstjp2kdecimator_la_LIBADD = \
|
||||
$(GST_LIBS) $(GST_BASE_LIBS)
|
||||
libgstjp2kdecimator_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstjp2kdecimator_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstjp2kdecimator.h jp2kcodestream.h
|
||||
|
|
|
@ -6,6 +6,5 @@ libgstjpegformat_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
|||
libgstjpegformat_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS)
|
||||
libgstjpegformat_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstjpegformat_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstjpegformat.h gstjpegparse.h gstjifmux.h
|
||||
|
|
|
@ -17,7 +17,6 @@ libgstrfbsrc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|||
$(X11_LIBS) \
|
||||
$(GIO_LIBS)
|
||||
libgstrfbsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GIO_LDFLAGS)
|
||||
libgstrfbsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
rfbdecoder.h \
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue