mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
0165bad2a8
Original commit message from CVS: * ext/ffmpeg/Makefile.am: * ext/libpostproc/Makefile.am: * ext/libswscale/Makefile.am: Don't install static libs for plugins. Fixes #550851 for -ffmpeg.
13 lines
449 B
Makefile
13 lines
449 B
Makefile
plugin_LTLIBRARIES = libgstpostproc.la
|
|
|
|
libgstpostproc_la_SOURCES = gstpostproc.c
|
|
|
|
libgstpostproc_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(LIBOIL_CFLAGS) \
|
|
$(POSTPROC_CFLAGS)
|
|
libgstpostproc_la_LIBADD = -lgstvideo-@GST_MAJORMINOR@ \
|
|
$(POSTPROC_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LIBOIL_LIBS)
|
|
|
|
libgstpostproc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DARWIN_LDFLAGS)
|
|
libgstpostproc_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|