mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
vdpay: fix build in uninstalled setup
Add GST_PLUGINS_BASE_CFLAGS to CFLAGS so it finds the gst/video/video.h headers in an uninstalled setup. Also reshuffle order.
This commit is contained in:
parent
423418a51b
commit
730c59e52a
1 changed files with 5 additions and 3 deletions
|
@ -4,11 +4,13 @@ libgstbasevideodecoder_la_SOURCES = \
|
||||||
gstvideoframe.c \
|
gstvideoframe.c \
|
||||||
gstbasevideodecoder.c
|
gstbasevideodecoder.c
|
||||||
|
|
||||||
libgstbasevideodecoder_la_CFLAGS = $(GST_CFLAGS) \
|
libgstbasevideodecoder_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||||
-DGstBaseVideoDecoder=SatBaseVideoDecoder \
|
-DGstBaseVideoDecoder=SatBaseVideoDecoder \
|
||||||
-DGstBaseVideoDecoderClass=SatBaseVideoDecoderClass
|
-DGstBaseVideoDecoderClass=SatBaseVideoDecoderClass
|
||||||
libgstbasevideodecoder_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
libgstbasevideodecoder_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR)
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR) \
|
||||||
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
|
|
||||||
libgstbasevideodecoder_la_LDFLAGS = $(GST_ALL_LDFLAGS) -module -avoid-version
|
libgstbasevideodecoder_la_LDFLAGS = $(GST_ALL_LDFLAGS) -module -avoid-version
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
Loading…
Reference in a new issue