mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 05:22:30 +00:00
gst: Add better support for static plugins
This commit is contained in:
parent
6da91fa7d5
commit
e51cd4fe2f
161 changed files with 186 additions and 164 deletions
24
configure.ac
24
configure.ac
|
@ -279,6 +279,28 @@ AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
|
||||||
["${srcdir}/gst-plugins-bad.doap"],
|
["${srcdir}/gst-plugins-bad.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=""
|
||||||
|
@ -2289,7 +2311,7 @@ AC_SUBST(GST_LIB_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 ***
|
||||||
|
|
|
@ -7,6 +7,6 @@ libgstapexsink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstaudio-$(GST_API_VERSION) -lgstinterfaces-$(GST_API_VERSION) \
|
-lgstaudio-$(GST_API_VERSION) -lgstinterfaces-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(APEXSINK_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(APEXSINK_LIBS)
|
||||||
libgstapexsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstapexsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstapexsink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstapexsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstapexraop.h gstapexsink.h
|
noinst_HEADERS = gstapexraop.h gstapexsink.h
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstassrender_la_SOURCES = gstassrender.c
|
||||||
libgstassrender_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ASSRENDER_CFLAGS)
|
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_LIBADD = $(ASSRENDER_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) -lgstvideo-@GST_API_VERSION@
|
||||||
libgstassrender_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstassrender_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstassrender_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstassrender_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstassrender.h
|
noinst_HEADERS = gstassrender.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstaudiofile_la_SOURCES = gstaf.c gstafsink.c gstafsrc.c gstafparse.c
|
||||||
libgstaudiofile_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS) $(AUDIOFILE_CFLAGS)
|
libgstaudiofile_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS) $(AUDIOFILE_CFLAGS)
|
||||||
libgstaudiofile_la_LIBADD = $(AUDIOFILE_LIBS)
|
libgstaudiofile_la_LIBADD = $(AUDIOFILE_LIBS)
|
||||||
libgstaudiofile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudiofile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaudiofile_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaudiofile_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstafsink.h gstafsrc.h gstafparse.h
|
noinst_HEADERS = gstafsink.h gstafsrc.h gstafparse.h
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstbz2_la_SOURCES = \
|
||||||
libgstbz2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstbz2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstbz2_la_LIBADD = $(GST_BASE_LIBS) $(BZ2_LIBS)
|
libgstbz2_la_LIBADD = $(GST_BASE_LIBS) $(BZ2_LIBS)
|
||||||
libgstbz2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstbz2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstbz2_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstbz2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstbz2dec.h gstbz2enc.h
|
gstbz2dec.h gstbz2enc.h
|
||||||
|
|
|
@ -4,5 +4,5 @@ libgstcdaudio_la_SOURCES = gstcdaudio.c
|
||||||
libgstcdaudio_la_CFLAGS = $(GST_CFLAGS)
|
libgstcdaudio_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstcdaudio_la_LIBADD = $(GST_LIBS)
|
libgstcdaudio_la_LIBADD = $(GST_LIBS)
|
||||||
libgstcdaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lcdaudio
|
libgstcdaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lcdaudio
|
||||||
libgstcdaudio_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcdaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,6 @@ libgstcelt_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(CELT_LIBS)
|
$(CELT_LIBS)
|
||||||
libgstcelt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstcelt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstcelt_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcelt_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstceltenc.h gstceltdec.h
|
noinst_HEADERS = gstceltenc.h gstceltdec.h
|
||||||
|
|
|
@ -10,6 +10,6 @@ libgstchromaprint_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(CHROMAPRINT_LIBS)
|
$(CHROMAPRINT_LIBS)
|
||||||
libgstchromaprint_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstchromaprint_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstchromaprint_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstchromaprint_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstchromaprint.h
|
noinst_HEADERS = gstchromaprint.h
|
||||||
|
|
|
@ -19,7 +19,7 @@ libgstcurl_la_LIBADD = \
|
||||||
$(WINSOCK2_LIBS) \
|
$(WINSOCK2_LIBS) \
|
||||||
$(CURL_LIBS)
|
$(CURL_LIBS)
|
||||||
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcurl_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcurl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcurlbasesink.h \
|
noinst_HEADERS = gstcurlbasesink.h \
|
||||||
gstcurltlssink.h \
|
gstcurltlssink.h \
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstdc1394_la_CFLAGS = $(GST_CFLAGS) \
|
||||||
$(LIBDC1394_CFLAGS)
|
$(LIBDC1394_CFLAGS)
|
||||||
|
|
||||||
libgstdc1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdc1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdc1394_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdc1394_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
libgstdc1394_la_LIBADD = $(GST_BASE_LIBS) \
|
libgstdc1394_la_LIBADD = $(GST_BASE_LIBS) \
|
||||||
$(LIBDC1394_LIBS)
|
$(LIBDC1394_LIBS)
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstdirac_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(DIRAC_LIBS) -lz $(LIBM)
|
$(DIRAC_LIBS) -lz $(LIBM)
|
||||||
libgstdirac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdirac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdirac_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdirac_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstdiracdec.h
|
gstdiracdec.h
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-$(GST_API_VERSION) \
|
-lgstvideo-$(GST_API_VERSION) \
|
||||||
$(DIRECTFB_LIBS)
|
$(DIRECTFB_LIBS)
|
||||||
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdfbvideosink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdfbvideosink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = dfbvideosink.h
|
noinst_HEADERS = dfbvideosink.h
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@ libgstdtsdec_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
-lgstaudio-@GST_API_VERSION@ \
|
-lgstaudio-@GST_API_VERSION@ \
|
||||||
$(DTS_LIBS) $(ORC_LIBS)
|
$(DTS_LIBS) $(ORC_LIBS)
|
||||||
libgstdtsdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdtsdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdtsdec_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdtsdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdtsdec.h
|
noinst_HEADERS = gstdtsdec.h
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstfaac_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstaudio-@GST_API_VERSION@ -lgstpbutils-@GST_API_VERSION@ \
|
-lgstaudio-@GST_API_VERSION@ -lgstpbutils-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(FAAC_LIBS)
|
$(GST_BASE_LIBS) $(FAAC_LIBS)
|
||||||
libgstfaac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfaac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfaac_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfaac_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstfaac.h
|
noinst_HEADERS = gstfaac.h
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstfaad_la_CFLAGS = -DGST_USE_UNSTABLE_API \
|
||||||
libgstfaad_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
libgstfaad_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(FAAD_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(FAAD_LIBS)
|
||||||
libgstfaad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfaad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfaad_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfaad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstfaad.h
|
noinst_HEADERS = gstfaad.h
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,6 @@ libgstflite_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(FLITE_LIBS)
|
$(FLITE_LIBS)
|
||||||
libgstflite_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstflite_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstflite_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstflite_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ libgstfluidsynthmidi_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||||
$(GST_BASE_CFLAGS) $(FLUIDSYNTH_CFLAGS)
|
$(GST_BASE_CFLAGS) $(FLUIDSYNTH_CFLAGS)
|
||||||
libgstfluidsynthmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(FLUIDSYNTH_LIBS)
|
libgstfluidsynthmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(FLUIDSYNTH_LIBS)
|
||||||
libgstfluidsynthmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfluidsynthmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfluidsynthmidi_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfluidsynthmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
noinst_HEADERS = gstfluiddec.h
|
noinst_HEADERS = gstfluiddec.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstgme_la_SOURCES = gstgme.c
|
||||||
libgstgme_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GME_CFLAGS)
|
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_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GME_LIBS)
|
||||||
libgstgme_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgme_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgme_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgme_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstgme.h
|
noinst_HEADERS = gstgme.h
|
||||||
|
|
|
@ -25,7 +25,7 @@ libgstgsettingselements_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS) $(GS
|
||||||
-DGstSwitchSinkClass=GstGSettingsSwitchSinkClass
|
-DGstSwitchSinkClass=GstGSettingsSwitchSinkClass
|
||||||
libgstgsettingselements_la_LIBADD = $(GST_LIBS) $(GSETTINGS_LIBS)
|
libgstgsettingselements_la_LIBADD = $(GST_LIBS) $(GSETTINGS_LIBS)
|
||||||
libgstgsettingselements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgsettingselements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgsettingselements_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgsettingselements_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstgsettingsaudiosink.h \
|
gstgsettingsaudiosink.h \
|
||||||
|
|
|
@ -10,6 +10,6 @@ libgstgsm_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS)
|
$(GST_BASE_LIBS)
|
||||||
libgstgsm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgsm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgsm_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgsm_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstgsmenc.h gstgsmdec.h
|
noinst_HEADERS = gstgsmenc.h gstgsmdec.h
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstfragmented_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(GIO_LIBS) $(LIBM) $(GNUTLS_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(GIO_LIBS) $(LIBM) $(GNUTLS_LIBS)
|
||||||
libgstfragmented_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
libgstfragmented_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
||||||
libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfragmented_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 = \
|
||||||
|
|
|
@ -12,7 +12,7 @@ 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_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_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_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstkate_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstkate_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# 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
|
noinst_HEADERS = gstkate.h gstkatedec.h gstkateenc.h gstkateparse.h gstkatetag.h gstkateutil.h gstkatespu.h gstkatetiger.h
|
||||||
|
|
|
@ -10,6 +10,6 @@ libgstladspa_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(LIBM) $(LRDF_LIBS)
|
$(LIBM) $(LRDF_LIBS)
|
||||||
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstladspa_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstladspa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstladspa.h
|
noinst_HEADERS = gstladspa.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstlibfame_la_SOURCES = gstlibfame.c
|
||||||
libgstlibfame_la_CFLAGS = $(GST_CFLAGS) $(LIBFAME_CFLAGS)
|
libgstlibfame_la_CFLAGS = $(GST_CFLAGS) $(LIBFAME_CFLAGS)
|
||||||
libgstlibfame_la_LIBADD = $(LIBFAME_LIBS)
|
libgstlibfame_la_LIBADD = $(LIBFAME_LIBS)
|
||||||
libgstlibfame_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstlibfame_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstlibfame_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstlibfame_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS=gstlibfame.h
|
noinst_HEADERS=gstlibfame.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstmms_la_SOURCES = gstmms.c
|
||||||
libgstmms_la_CFLAGS = $(GST_CFLAGS) $(LIBMMS_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
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_LIBADD = $(GST_LIBS) $(LIBMMS_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstmms_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmms_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmms_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmms_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmms.h
|
noinst_HEADERS = gstmms.h
|
||||||
|
|
|
@ -10,6 +10,6 @@ libgstlv2_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(LIBM) $(SLV2_LIBS)
|
$(LIBM) $(SLV2_LIBS)
|
||||||
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstlv2_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstlv2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstlv2.h
|
noinst_HEADERS = gstlv2.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstmimic_la_SOURCES = gstmimic.c gstmimdec.c gstmimenc.c
|
||||||
libgstmimic_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(MIMIC_CFLAGS)
|
libgstmimic_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(MIMIC_CFLAGS)
|
||||||
libgstmimic_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(MIMIC_LIBS)
|
libgstmimic_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(MIMIC_LIBS)
|
||||||
libgstmimic_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmimic_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmimic_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmimic_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmimdec.h gstmimenc.h
|
noinst_HEADERS = gstmimdec.h gstmimenc.h
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstmodplug_la_SOURCES = gstmodplug.cc
|
||||||
libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MODPLUG_CFLAGS)
|
libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MODPLUG_CFLAGS)
|
||||||
libgstmodplug_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lstdc++ $(LIBM) $(MODPLUG_LIBS)
|
libgstmodplug_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lstdc++ $(LIBM) $(MODPLUG_LIBS)
|
||||||
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmodplug_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmodplug_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmodplug.h
|
noinst_HEADERS = gstmodplug.h
|
||||||
|
|
|
@ -13,7 +13,7 @@ libgstmpeg2enc_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_LIBS) $(MPEG2ENC_LIBS)
|
$(GST_LIBS) $(MPEG2ENC_LIBS)
|
||||||
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmpeg2enc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmpeg2enc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstmpeg2enc.hh \
|
gstmpeg2enc.hh \
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstmpg123_la_CFLAGS = -DGST_USE_UNSTABLE_API \
|
||||||
libgstmpg123_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
libgstmpg123_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(MPG123_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(MPG123_LIBS)
|
||||||
libgstmpg123_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpg123_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmpg123_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmpg123_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmpg123audiodec.h
|
noinst_HEADERS = gstmpg123audiodec.h
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstmplex_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
$(GST_LIBS) $(MPLEX_LIBS)
|
$(GST_LIBS) $(MPLEX_LIBS)
|
||||||
libgstmplex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(MPLEX_LDFLAGS)
|
libgstmplex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(MPLEX_LDFLAGS)
|
||||||
libgstmplex_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmplex_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstmplex.hh \
|
gstmplex.hh \
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstmusepack_la_SOURCES = \
|
||||||
libgstmusepack_la_CFLAGS = $(MUSEPACK_CFLAGS) $(GST_CFLAGS)
|
libgstmusepack_la_CFLAGS = $(MUSEPACK_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstmusepack_la_LIBADD = $(MUSEPACK_LIBS) $(GST_LIBS)
|
libgstmusepack_la_LIBADD = $(MUSEPACK_LIBS) $(GST_LIBS)
|
||||||
libgstmusepack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmusepack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmusepack_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmusepack_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstmusepackdec.h \
|
gstmusepackdec.h \
|
||||||
|
|
|
@ -7,5 +7,5 @@ libgsttrm_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(MUSICBRAINZ_CFL
|
||||||
libgsttrm_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(MUSICBRAINZ_LIBS) \
|
libgsttrm_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(MUSICBRAINZ_LIBS) \
|
||||||
-lgsttag-@GST_API_VERSION@
|
-lgsttag-@GST_API_VERSION@
|
||||||
libgsttrm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsttrm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsttrm_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsttrm_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstmythtvsrc_la_CFLAGS = \
|
||||||
|
|
||||||
libgstmythtvsrc_la_LDFLAGS = \
|
libgstmythtvsrc_la_LDFLAGS = \
|
||||||
$(GST_PLUGIN_LDFLAGS)
|
$(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmythtvsrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmythtvsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
libgstmythtvsrc_la_LIBADD = \
|
libgstmythtvsrc_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
|
|
|
@ -6,6 +6,6 @@ libgstnassink_la_CFLAGS = \
|
||||||
libgstnassink_la_LIBADD = \
|
libgstnassink_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(NAS_LIBS)
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) $(NAS_LIBS)
|
||||||
libgstnassink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstnassink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstnassink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstnassink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = nassink.h
|
noinst_HEADERS = nassink.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstneonhttpsrc_la_SOURCES = gstneonhttpsrc.c
|
||||||
libgstneonhttpsrc_la_CFLAGS = $(GST_CFLAGS) $(NEON_CFLAGS)
|
libgstneonhttpsrc_la_CFLAGS = $(GST_CFLAGS) $(NEON_CFLAGS)
|
||||||
libgstneonhttpsrc_la_LIBADD = $(GST_BASE_LIBS) $(NEON_LIBS)
|
libgstneonhttpsrc_la_LIBADD = $(GST_BASE_LIBS) $(NEON_LIBS)
|
||||||
libgstneonhttpsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstneonhttpsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstneonhttpsrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstneonhttpsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstneonhttpsrc.h
|
noinst_HEADERS = gstneonhttpsrc.h
|
||||||
|
|
|
@ -14,6 +14,6 @@ libgstofa_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(OFA_LIBS)
|
$(OFA_LIBS)
|
||||||
|
|
||||||
libgstofa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstofa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstofa_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstofa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstofa.h
|
noinst_HEADERS = gstofa.h
|
||||||
|
|
|
@ -9,7 +9,7 @@ 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_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_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(OPENAL_LIBS)
|
||||||
libgstopenal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstopenal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstopenal_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstopenal_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstopenalsink.h gstopenalsrc.h
|
noinst_HEADERS = gstopenalsink.h gstopenalsrc.h
|
||||||
|
|
|
@ -39,7 +39,7 @@ libgstopencv_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(OPENCV_LIBS) \
|
||||||
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
||||||
|
|
||||||
libgstopencv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstopencv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstopencv_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstopencv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstopencvvideofilter.h gstopencvutils.h \
|
noinst_HEADERS = gstopencvvideofilter.h gstopencvutils.h \
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstopenjpeg_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_LIBS) $(OPENJPEG_LIBS)
|
$(GST_LIBS) $(OPENJPEG_LIBS)
|
||||||
libgstopenjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstopenjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstopenjpeg_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstopenjpeg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstopenjpegdec.h \
|
gstopenjpegdec.h \
|
||||||
|
|
|
@ -14,6 +14,6 @@ libgstopus_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(OPUS_LIBS)
|
$(OPUS_LIBS)
|
||||||
libgstopus_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstopus_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstopus_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstopus_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstopusenc.h gstopusdec.h gstopusparse.h gstopusheader.h gstopuscommon.h gstrtpopuspay.h gstrtpopusdepay.h
|
noinst_HEADERS = gstopusenc.h gstopusdec.h gstopusparse.h gstopusheader.h gstopuscommon.h gstrtpopuspay.h gstrtpopusdepay.h
|
||||||
|
|
|
@ -21,7 +21,7 @@ libgstresindvd_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgsttag-$(GST_API_VERSION) \
|
-lgsttag-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS) $(DVDNAV_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS) $(DVDNAV_LIBS)
|
||||||
libgstresindvd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstresindvd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstresindvd_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstresindvd_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = resindvdbin.h \
|
noinst_HEADERS = resindvdbin.h \
|
||||||
rsndec.h \
|
rsndec.h \
|
||||||
|
|
|
@ -11,6 +11,6 @@ libgstrsvg_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(RSVG_LIBS)
|
$(RSVG_LIBS)
|
||||||
libgstrsvg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstrsvg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstrsvg_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrsvg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstrsvgdec.h gstrsvgoverlay.h
|
noinst_HEADERS = gstrsvgdec.h gstrsvgoverlay.h
|
||||||
|
|
|
@ -6,5 +6,5 @@ noinst_HEADERS = gstrtmpsrc.h gstrtmpsink.h
|
||||||
libgstrtmp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(RTMP_CFLAGS)
|
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_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(RTMP_LIBS) $(WINSOCK2_LIBS)
|
||||||
libgstrtmp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtmp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstrtmp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrtmp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,4 @@ libgstsbc_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(SBC_LIBS)
|
$(SBC_LIBS)
|
||||||
libgstsbc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsbc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsbc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsbc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
|
@ -20,6 +20,6 @@ libgstschro_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(SCHRO_LIBS)
|
$(SCHRO_LIBS)
|
||||||
libgstschro_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstschro_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstschro_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstschro_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstsdl_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstinterfaces-$(GST_API_VERSION) \
|
-lgstinterfaces-$(GST_API_VERSION) \
|
||||||
$(SDL_LIBS)
|
$(SDL_LIBS)
|
||||||
libgstsdl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsdl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsdl_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsdl_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
sdlvideosink.h \
|
sdlvideosink.h \
|
||||||
|
|
|
@ -6,6 +6,6 @@ libgstsnapshot_la_SOURCES = \
|
||||||
libgstsnapshot_la_CFLAGS = $(GST_CFLAGS)
|
libgstsnapshot_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsnapshot_la_LIBADD = $(GST_LIBS) $(LIBPNG_LIBS)
|
libgstsnapshot_la_LIBADD = $(GST_LIBS) $(LIBPNG_LIBS)
|
||||||
libgstsnapshot_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
libgstsnapshot_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
||||||
libgstsnapshot_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsnapshot_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsnapshot.h
|
noinst_HEADERS = gstsnapshot.h
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstsndfile_la_SOURCES = gstsf.c gstsfsrc.c gstsfsink.c
|
||||||
libgstsndfile_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SNDFILE_CFLAGS)
|
libgstsndfile_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SNDFILE_CFLAGS)
|
||||||
libgstsndfile_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SNDFILE_LIBS)
|
libgstsndfile_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SNDFILE_LIBS)
|
||||||
libgstsndfile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsndfile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsndfile_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsndfile_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsf.h gstsfsrc.h gstsfsink.h
|
noinst_HEADERS = gstsf.h gstsfsrc.h gstsfsink.h
|
||||||
|
|
|
@ -9,6 +9,6 @@ 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_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_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_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsoundtouch_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsoundtouch_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstpitch.hh gstbpmdetect.hh
|
noinst_HEADERS = gstpitch.hh gstbpmdetect.hh
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstspandsp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(SPANDSP_CFL
|
||||||
libgstspandsp_la_LIBADD = $(SPANDSP_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
libgstspandsp_la_LIBADD = $(SPANDSP_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstspandsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstspandsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstspandsp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstspandsp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstspanplc.h gstdtmfdetect.h
|
noinst_HEADERS = gstspanplc.h gstdtmfdetect.h
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstspc_la_SOURCES = gstspc.c tag.c
|
||||||
libgstspc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SPC_CFLAGS)
|
libgstspc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SPC_CFLAGS)
|
||||||
libgstspc_la_LIBADD = $(GST_LIBS) $(SPC_LIBS)
|
libgstspc_la_LIBADD = $(GST_LIBS) $(SPC_LIBS)
|
||||||
libgstspc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstspc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstspc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstspc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstspc.h tag.h
|
noinst_HEADERS = gstspc.h tag.h
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ libgstsrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(SRTP_LIBS)
|
$(SRTP_LIBS)
|
||||||
libgstsrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsrtp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstsrtp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
srtp_headers = \
|
srtp_headers = \
|
||||||
gstsrtpdec.h \
|
gstsrtpdec.h \
|
||||||
|
|
|
@ -5,6 +5,6 @@ libgstteletextdec_la_SOURCES = gstteletextdec.c teletext.c
|
||||||
libgstteletextdec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TELETEXTDEC_CFLAGS)
|
libgstteletextdec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TELETEXTDEC_CFLAGS)
|
||||||
libgstteletextdec_la_LIBADD = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_LIBS) $(TELETEXTDEC_LIBS)
|
libgstteletextdec_la_LIBADD = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_LIBS) $(TELETEXTDEC_LIBS)
|
||||||
libgstteletextdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstteletextdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstteletextdec_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstteletextdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstteletextdec.h
|
noinst_HEADERS = gstteletextdec.h
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgsttimidity_la_SOURCES = gsttimidity.c
|
||||||
libgsttimidity_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(TIMIDITY_CFLAGS)
|
libgsttimidity_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(TIMIDITY_CFLAGS)
|
||||||
libgsttimidity_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(TIMIDITY_LIBS)
|
libgsttimidity_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(TIMIDITY_LIBS)
|
||||||
libgsttimidity_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsttimidity_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsttimidity_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsttimidity_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if USE_WILDMIDI
|
if USE_WILDMIDI
|
||||||
|
@ -26,7 +26,7 @@ libgstwildmidi_la_SOURCES = gstwildmidi.c
|
||||||
libgstwildmidi_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(WILDMIDI_CFLAGS)
|
libgstwildmidi_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(WILDMIDI_CFLAGS)
|
||||||
libgstwildmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WILDMIDI_LIBS)
|
libgstwildmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WILDMIDI_LIBS)
|
||||||
libgstwildmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwildmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwildmidi_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwildmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
noinst_HEADERS = gsttimidity.h gstwildmidi.h
|
noinst_HEADERS = gsttimidity.h gstwildmidi.h
|
||||||
|
|
|
@ -17,7 +17,7 @@ libgstvoaacenc_la_LIBADD = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(VOAACENC_LIBS)
|
$(VOAACENC_LIBS)
|
||||||
libgstvoaacenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvoaacenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvoaacenc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvoaacenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstvoaacenc.h
|
gstvoaacenc.h
|
||||||
|
|
|
@ -9,7 +9,7 @@ libgstvoamrwbenc_la_CFLAGS = -DGST_USE_UNSTABLE_API \
|
||||||
libgstvoamrwbenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
libgstvoamrwbenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(VOAMRWBENC_LIBS)
|
-lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) $(VOAMRWBENC_LIBS)
|
||||||
libgstvoamrwbenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvoamrwbenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvoamrwbenc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstvoamrwbenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstvoamrwbenc.h
|
gstvoamrwbenc.h
|
||||||
|
|
|
@ -7,6 +7,6 @@ libgstwaylandsink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-$(GST_API_VERSION) \
|
-lgstvideo-$(GST_API_VERSION) \
|
||||||
$(WAYLAND_LIBS)
|
$(WAYLAND_LIBS)
|
||||||
libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstwaylandsink_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstwaylandsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwaylandsink.h waylandpool.h
|
noinst_HEADERS = gstwaylandsink.h waylandpool.h
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstxvid_la_SOURCES = gstxvidenc.c gstxviddec.c gstxvid.c
|
||||||
libgstxvid_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(XVID_CFLAGS)
|
libgstxvid_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(XVID_CFLAGS)
|
||||||
libgstxvid_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(XVID_LIBS)
|
libgstxvid_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(XVID_LIBS)
|
||||||
libgstxvid_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstxvid_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstxvid_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstxvid_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstxvidenc.h gstxviddec.h gstxvid.h
|
noinst_HEADERS = gstxvidenc.h gstxviddec.h gstxvid.h
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstzbar_la_SOURCES = gstzbar.c
|
||||||
libgstzbar_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ZBAR_CFLAGS)
|
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_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(ZBAR_LIBS)
|
||||||
libgstzbar_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstzbar_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstzbar_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstzbar_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstzbar.h
|
noinst_HEADERS = gstzbar.h
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,6 @@ libgstaccurip_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) \
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
||||||
$(ACCURIP_LIBS)
|
$(ACCURIP_LIBS)
|
||||||
libgstaccurip_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaccurip_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaccurip_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaccurip_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstaccurip.h
|
noinst_HEADERS = gstaccurip.h
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstadpcmdec_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstadpcmdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstadpcmdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstadpcmdec_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstadpcmdec_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -9,7 +9,7 @@ libgstadpcmenc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstadpcmenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
libgstadpcmenc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstadpcmenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstadpcmenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstadpcmenc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstadpcmenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -11,7 +11,7 @@ libgstaiff_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaiff_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaiff_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = aiffmux.h aiffparse.h
|
noinst_HEADERS = aiffmux.h aiffparse.h
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstasfmux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(
|
||||||
libgstasfmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
libgstasfmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstrtp-@GST_API_VERSION@
|
-lgstrtp-@GST_API_VERSION@
|
||||||
libgstasfmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstasfmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstasfmux_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstasfmux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstasfmux.h \
|
noinst_HEADERS = gstasfmux.h \
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstaudiobuffer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
||||||
-lgstaudio-$(GST_API_VERSION)
|
-lgstaudio-$(GST_API_VERSION)
|
||||||
|
|
||||||
libgstaudiobuffer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudiobuffer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaudiobuffer_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaudiobuffer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -15,7 +15,7 @@ libgstaudiovisualizers_la_LIBADD = \
|
||||||
-lgstvideo-$(GST_API_VERSION) -lgstfft-$(GST_API_VERSION) \
|
-lgstvideo-$(GST_API_VERSION) -lgstfft-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
||||||
libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstaudiovisualizers_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstaudiovisualizers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstaudiovisualizer.h gstdrawhelpers.h \
|
noinst_HEADERS = gstaudiovisualizer.h gstdrawhelpers.h \
|
||||||
gstspacescope.h gstspectrascope.h gstsynaescope.h gstwavescope.h
|
gstspacescope.h gstspectrascope.h gstsynaescope.h gstwavescope.h
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstautoconvert_la_SOURCES = gstautoconvert.c gstautovideoconvert.c plugin.c
|
||||||
libgstautoconvert_la_CFLAGS = $(GST_CFLAGS)
|
libgstautoconvert_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstautoconvert_la_LIBADD = $(GST_LIBS)
|
libgstautoconvert_la_LIBADD = $(GST_LIBS)
|
||||||
libgstautoconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstautoconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstautoconvert_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstautoconvert_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstautoconvert.h gstautovideoconvert.h
|
noinst_HEADERS = gstautoconvert.h gstautovideoconvert.h
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ libgstbayer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(ORC_LIBS) \
|
$(ORC_LIBS) \
|
||||||
$(GST_BASE_LIBS)
|
$(GST_BASE_LIBS)
|
||||||
libgstbayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstbayer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstbayer_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstbayer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
nodist_libgstbayer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
nodist_libgstbayer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ libgstcamerabin2_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
|
|
||||||
libgstcamerabin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcamerabin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcamerabin2_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcamerabin2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstviewfinderbin.h \
|
noinst_HEADERS = gstviewfinderbin.h \
|
||||||
camerabingeneral.h \
|
camerabingeneral.h \
|
||||||
|
|
|
@ -21,7 +21,7 @@ libgstcdxaparse_la_LIBADD = \
|
||||||
-lgstriff-@GST_API_VERSION@
|
-lgstriff-@GST_API_VERSION@
|
||||||
|
|
||||||
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcdxaparse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcdxaparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -13,7 +13,7 @@ libgstcoloreffects_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstcoloreffects_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstcoloreffects_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcoloreffects.h gstchromahold.h
|
noinst_HEADERS = gstcoloreffects.h gstchromahold.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstdataurisrc_la_SOURCES = gstdataurisrc.c gstdataurisrc.h
|
||||||
libgstdataurisrc_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
libgstdataurisrc_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
||||||
libgstdataurisrc_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstdataurisrc_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstdataurisrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdataurisrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdataurisrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdataurisrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstdccp_la_SOURCES = gstdccpplugin.c \
|
||||||
libgstdccp_la_CFLAGS = $(GST_CFLAGS)
|
libgstdccp_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstdccp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DCCP_LIBS) $(WINSOCK2_LIBS)
|
libgstdccp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DCCP_LIBS) $(WINSOCK2_LIBS)
|
||||||
libgstdccp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdccp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdccp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdccp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstdccp.h \
|
noinst_HEADERS = gstdccp.h \
|
||||||
|
|
|
@ -34,7 +34,7 @@ libgstdebugutilsbad_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstvideo-$(GST_API_VERSION) \
|
-lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstdebugutilsbad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdebugutilsbad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdebugutilsbad_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdebugutilsbad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = fpsdisplaysink.h
|
noinst_HEADERS = fpsdisplaysink.h
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstdvbsuboverlay_la_SOURCES = dvb-sub.c gstdvbsuboverlay.c
|
||||||
libgstdvbsuboverlay_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
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_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_LIBS)
|
||||||
libgstdvbsuboverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdvbsuboverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdvbsuboverlay_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdvbsuboverlay_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdvbsuboverlay.h dvb-sub.h
|
noinst_HEADERS = gstdvbsuboverlay.h dvb-sub.h
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstdvdspu_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(
|
||||||
libgstdvdspu_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
libgstdvdspu_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstdvdspu_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstdvdspu_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstdvdspu_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstdvdspu_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdvdspu.h gstspu-pgs.h gstspu-vobsub.h gstspu-common.h
|
noinst_HEADERS = gstdvdspu.h gstspu-pgs.h gstspu-vobsub.h gstspu-common.h
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstfaceoverlay_la_SOURCES = gstfaceoverlay.c
|
||||||
libgstfaceoverlay_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstfaceoverlay_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstfaceoverlay_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_LIBS)
|
libgstfaceoverlay_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(GST_LIBS)
|
||||||
libgstfaceoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfaceoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfaceoverlay_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfaceoverlay_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstfaceoverlay.h
|
noinst_HEADERS = gstfaceoverlay.h
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstfestival_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstfestival_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
libgstfestival_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||||
-lgstaudio-1.0 $(WINSOCK2_LIBS)
|
-lgstaudio-1.0 $(WINSOCK2_LIBS)
|
||||||
libgstfestival_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfestival_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfestival_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfestival_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstfestival.h
|
noinst_HEADERS = gstfestival.h
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,6 @@ libgstfieldanalysis_la_LIBADD = \
|
||||||
$(ORC_LIBS)
|
$(ORC_LIBS)
|
||||||
|
|
||||||
libgstfieldanalysis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfieldanalysis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfieldanalysis_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfieldanalysis_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstfieldanalysis.h
|
noinst_HEADERS = gstfieldanalysis.h
|
||||||
|
|
|
@ -14,7 +14,7 @@ libgstfreeverb_la_LIBADD = $(GST_LIBS) \
|
||||||
-lgstaudio-$(GST_API_VERSION) \
|
-lgstaudio-$(GST_API_VERSION) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstfreeverb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfreeverb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfreeverb_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfreeverb_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
# headers we need but don't want installed
|
# headers we need but don't want installed
|
||||||
noinst_HEADERS = gstfreeverb.h
|
noinst_HEADERS = gstfreeverb.h
|
||||||
|
|
|
@ -10,7 +10,7 @@ libgstfrei0r_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFL
|
||||||
libgstfrei0r_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
libgstfrei0r_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS)
|
||||||
libgstfrei0r_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstfrei0r_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstfrei0r_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfrei0r_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstfrei0r.h gstfrei0rfilter.h gstfrei0rsrc.h gstfrei0rmixer.h frei0r.h
|
noinst_HEADERS = gstfrei0r.h gstfrei0rfilter.h gstfrei0rsrc.h gstfrei0rmixer.h frei0r.h
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,6 @@ libgstpuzzle_la_SOURCES = \
|
||||||
libgstpuzzle_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
libgstpuzzle_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
||||||
libgstpuzzle_la_LIBADD =
|
libgstpuzzle_la_LIBADD =
|
||||||
libgstpuzzle_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBOIL_LIBS)
|
libgstpuzzle_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBOIL_LIBS)
|
||||||
libgstpuzzle_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstpuzzle_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstvideoimage.h
|
noinst_HEADERS = gstvideoimage.h
|
||||||
|
|
|
@ -26,7 +26,7 @@ libgstgaudieffects_la_LIBADD = \
|
||||||
$(LIBM) \
|
$(LIBM) \
|
||||||
$(ORC_LIBS)
|
$(ORC_LIBS)
|
||||||
libgstgaudieffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgaudieffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgaudieffects_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgaudieffects_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 = \
|
||||||
|
|
|
@ -9,7 +9,7 @@ libgstgdp_la_SOURCES = \
|
||||||
libgstgdp_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstgdp_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstgdp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
libgstgdp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstgdp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgdp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgdp_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgdp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
dataprotocol.h \
|
dataprotocol.h \
|
||||||
|
|
|
@ -27,7 +27,7 @@ libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS) $(LIBM)
|
$(GST_LIBS) $(LIBM)
|
||||||
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstgeometrictransform_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstgeometrictransform_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstgeometrictransform.h \
|
noinst_HEADERS = gstgeometrictransform.h \
|
||||||
gstcirclegeometrictransform.h \
|
gstcirclegeometrictransform.h \
|
||||||
|
|
|
@ -9,7 +9,7 @@ noinst_HEADERS = \
|
||||||
libgsthdvparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
libgsthdvparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
||||||
libgsthdvparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(LIBM)
|
libgsthdvparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(LIBM)
|
||||||
libgsthdvparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgsthdvparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgsthdvparse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgsthdvparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -13,7 +13,7 @@ libgstid3tag_la_LIBADD = \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
|
|
||||||
libgstid3tag_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstid3tag_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstid3tag_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstid3tag_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstid3mux.h id3tag.h
|
noinst_HEADERS = gstid3mux.h id3tag.h
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ libgstinter_la_LIBADD = \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
|
|
||||||
libgstinter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstinter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstinter_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstinter_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
gstintertest_SOURCES = \
|
gstintertest_SOURCES = \
|
||||||
gstintertest.c
|
gstintertest.c
|
||||||
|
|
|
@ -13,7 +13,7 @@ libgstinterlace_la_LIBADD = \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
|
|
||||||
libgstinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstinterlace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstinterlace_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstinterlace_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||||
androgenizer \
|
androgenizer \
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstivfparse_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstivfparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstivfparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstivfparse_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstivfparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstivfparse.h
|
noinst_HEADERS = gstivfparse.h
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstivtc_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
libgstivtc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-1.0 \
|
libgstivtc_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-1.0 \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstivtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstivtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstivtc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstivtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST =
|
EXTRA_DIST =
|
||||||
|
|
|
@ -9,7 +9,7 @@ libgstjp2kdecimator_la_CFLAGS = \
|
||||||
libgstjp2kdecimator_la_LIBADD = \
|
libgstjp2kdecimator_la_LIBADD = \
|
||||||
$(GST_LIBS) $(GST_BASE_LIBS)
|
$(GST_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstjp2kdecimator_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstjp2kdecimator_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstjp2kdecimator_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstjp2kdecimator_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstjp2kdecimator.h jp2kcodestream.h
|
noinst_HEADERS = gstjp2kdecimator.h jp2kcodestream.h
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstjpegformat_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
||||||
libgstjpegformat_la_LIBADD = \
|
libgstjpegformat_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstjpegformat_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstjpegformat_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstjpegformat_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstjpegformat_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstjpegformat.h gstjpegparse.h gstjifmux.h
|
noinst_HEADERS = gstjpegformat.h gstjpegparse.h gstjifmux.h
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstrfbsrc_la_SOURCES = gstrfbsrc.c
|
||||||
libgstrfbsrc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X11_CFLAGS) -I$(srcdir)/..
|
libgstrfbsrc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X11_CFLAGS) -I$(srcdir)/..
|
||||||
libgstrfbsrc_la_LIBADD = $(GST_BASE_LIBS) $(X11_LIBS) $(WINSOCK2_LIBS) librfb.la
|
libgstrfbsrc_la_LIBADD = $(GST_BASE_LIBS) $(X11_LIBS) $(WINSOCK2_LIBS) librfb.la
|
||||||
libgstrfbsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrfbsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstrfbsrc_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstrfbsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
librfb_la_SOURCES = \
|
librfb_la_SOURCES = \
|
||||||
rfbbuffer.c \
|
rfbbuffer.c \
|
||||||
|
|
|
@ -6,7 +6,7 @@ libgstliveadder_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstliveadder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstliveadder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstliveadder_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstliveadder_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = liveadder.h
|
noinst_HEADERS = liveadder.h
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ libgstmidi_la_LIBADD = \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(LIBM)
|
$(LIBM)
|
||||||
libgstmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmidi_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = midiparse.h
|
noinst_HEADERS = midiparse.h
|
||||||
|
|
||||||
|
|
|
@ -5,5 +5,5 @@ libgstmixmatrix_la_SOURCES = mixmatrix.c
|
||||||
libgstmixmatrix_la_CFLAGS = $(GST_CFLAGS)
|
libgstmixmatrix_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmixmatrix_la_LIBADD =
|
libgstmixmatrix_la_LIBADD =
|
||||||
libgstmixmatrix_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmixmatrix_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmixmatrix_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmixmatrix_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ libgstmpeg1systemencode_la_SOURCES = gstmpeg1systemencode.c \
|
||||||
libgstmpeg1systemencode_la_CFLAGS = $(GST_CFLAGS)
|
libgstmpeg1systemencode_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmpeg1systemencode_la_LIBADD =
|
libgstmpeg1systemencode_la_LIBADD =
|
||||||
libgstmpeg1systemencode_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpeg1systemencode_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmpeg1systemencode_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmpeg1systemencode_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmpeg1systemencode.h \
|
noinst_HEADERS = gstmpeg1systemencode.h \
|
||||||
main.h \
|
main.h \
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgstmpegpsdemux_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstmpegpsdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpegpsdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstmpegpsdemux_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstmpegpsdemux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstmpegdefs.h \
|
gstmpegdefs.h \
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue