mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
ext/cdio/Makefile.am: Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be required for Cygwin, see #317048)
Original commit message from CVS: * ext/cdio/Makefile.am: Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be required for Cygwin, see #317048) * gst/rtp/gstasteriskh263.c: Cygwin has includes for both the unix network socket API and the windows API, but only one can be included, so fix includes to only use one or the other, prefering the unxi one (#317048).
This commit is contained in:
parent
56f0cea8e6
commit
cb23bad1d5
1 changed files with 2 additions and 0 deletions
|
@ -8,10 +8,12 @@ libgstcdio_la_SOURCES = \
|
||||||
libgstcdio_la_CFLAGS = \
|
libgstcdio_la_CFLAGS = \
|
||||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
$(CDIO_CFLAGS) \
|
$(CDIO_CFLAGS) \
|
||||||
|
$(GST_BASE_CFLAGS) \
|
||||||
$(GST_CFLAGS)
|
$(GST_CFLAGS)
|
||||||
|
|
||||||
libgstcdio_la_LIBADD = \
|
libgstcdio_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstcdda-@GST_MAJORMINOR@ \
|
$(GST_PLUGINS_BASE_LIBS) -lgstcdda-@GST_MAJORMINOR@ \
|
||||||
|
$(GST_BASE_LIBS) \
|
||||||
$(CDIO_LIBS)
|
$(CDIO_LIBS)
|
||||||
|
|
||||||
libgstcdio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcdio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue