mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8164b23812
Original commit message from CVS: Build fixes for OS X: (see #129600) * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh), (gst_riff_read_strf_vids), (gst_riff_read_strf_auds), (gst_riff_read_strf_iavs): * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih), (gst_avi_demux_stream_odml): * gst/playondemand/Makefile.am: * gst/rtp/rtp-packet.c:
18 lines
535 B
Makefile
18 lines
535 B
Makefile
|
|
plugin_LTLIBRARIES = libgstplayondemand.la
|
|
|
|
libgstplayondemand_la_SOURCES = gstplayondemand.c
|
|
libgstplayondemand_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstplayondemand_la_LIBADD =
|
|
libgstplayondemand_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstplayondemand.h filter.func
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo_mp3
|
|
endif
|
|
|
|
demo_mp3_SOURCES = demo-mp3.c gstplayondemand.h
|
|
## putting GTK_CFLAGS first fixes a weird compilation error with GTK and XML
|
|
demo_mp3_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
demo_mp3_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|