From cb23bad1d5bcf436b8f765319ea9ffbfa48fe11c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 23 Feb 2006 20:08:58 +0000 Subject: [PATCH] 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). --- ext/cdio/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/cdio/Makefile.am b/ext/cdio/Makefile.am index a1c80e6c3f..ba454d65df 100644 --- a/ext/cdio/Makefile.am +++ b/ext/cdio/Makefile.am @@ -8,10 +8,12 @@ libgstcdio_la_SOURCES = \ libgstcdio_la_CFLAGS = \ $(GST_PLUGINS_BASE_CFLAGS) \ $(CDIO_CFLAGS) \ + $(GST_BASE_CFLAGS) \ $(GST_CFLAGS) libgstcdio_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) -lgstcdda-@GST_MAJORMINOR@ \ + $(GST_BASE_LIBS) \ $(CDIO_LIBS) libgstcdio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)