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:
Tim-Philipp Müller 2006-02-23 20:08:58 +00:00
parent 56f0cea8e6
commit cb23bad1d5

View file

@ -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)