mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-06 23:45:35 +00:00
1f2cd3de4b
Original commit message from CVS: * Makefile.am: * configure.ac: * ext/ffmpeg/Makefile.am: * ext/ffmpeg/gstffmpeg.c: * ext/ffmpeg/gstffmpegdemux.c: * ext/libpostproc/Makefile.am: * ext/libpostproc/gstpostproc.c: Allow building against an external FFMpeg install. Fixes: #363363 Patch by: Josselin Mouette <joss at debian dot org> When built against an external install, the plugin description will say "system install" instead of "local snapshot"
11 lines
376 B
Makefile
11 lines
376 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)
|