summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/esd/Makefile.am2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f27ac69c..44ff9bc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-15 Tim-Philipp Müller <tim at centricular dot net>
+
+ * ext/esd/Makefile.am:
+ Add $(ESD_CFLAGS), otherwise build will fail for folks
+ with libesd in a non-standard prefix (#327009).
+
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
diff --git a/ext/esd/Makefile.am b/ext/esd/Makefile.am
index fd2ee4bc..f47e2480 100644
--- a/ext/esd/Makefile.am
+++ b/ext/esd/Makefile.am
@@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstesd.la
libgstesd_la_SOURCES = esdsink.c gstesd.c
#esdmon.c
-libgstesd_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
+libgstesd_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(ESD_CFLAGS)
libgstesd_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ $(ESD_LIBS)
libgstesd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)