mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 05:01:23 +00:00
2cd4c7e2b9
Original commit message from CVS: * ext/alsa/Makefile.am: * ext/cdparanoia/Makefile.am: * ext/gio/Makefile.am: * ext/gnomevfs/Makefile.am: * ext/libvisual/Makefile.am: * ext/ogg/Makefile.am: * ext/pango/Makefile.am: * ext/theora/Makefile.am: * ext/vorbis/Makefile.am: * gst/adder/Makefile.am: * gst/audioconvert/Makefile.am: * gst/audiorate/Makefile.am: * gst/audioresample/Makefile.am: * gst/audiotestsrc/Makefile.am: * gst/ffmpegcolorspace/Makefile.am: * gst/gdp/Makefile.am: * gst/playback/Makefile.am: * gst/subparse/Makefile.am: * gst/tcp/Makefile.am: * gst/typefind/Makefile.am: * gst/videorate/Makefile.am: * gst/videoscale/Makefile.am: * gst/videotestsrc/Makefile.am: * gst/volume/Makefile.am: * sys/v4l/Makefile.am: * sys/ximage/Makefile.am: * sys/xvimage/Makefile.am: Don't install static libs for plugins. Fixes #550851 for base.
29 lines
706 B
Makefile
29 lines
706 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstgio.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstgio_la_SOURCES = \
|
|
gstgio.c \
|
|
gstgiobasesink.c \
|
|
gstgiobasesrc.c \
|
|
gstgiosink.c \
|
|
gstgiosrc.c \
|
|
gstgiostreamsink.c \
|
|
gstgiostreamsrc.c
|
|
|
|
libgstgio_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GIO_CFLAGS)
|
|
libgstgio_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS)
|
|
libgstgio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GIO_LDFLAGS)
|
|
libgstgio_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstgio.h \
|
|
gstgiobasesink.h \
|
|
gstgiobasesrc.h \
|
|
gstgiosink.h \
|
|
gstgiosrc.h \
|
|
gstgiostreamsink.h \
|
|
gstgiostreamsrc.h
|
|
|