summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-10-31 18:17:50 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-10-31 18:17:50 +0000
commitd18bbcf1a89d5f6469605f5010c21fba29581d32 (patch)
treea075274cf8ad0f2adc71894d8eb619a018f206fe /ext/flac
parent46fe1e3fa07db49c121cee13e08d6472ba83e12b (diff)
ext/flac/Makefile.am: Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
Original commit message from CVS: * ext/flac/Makefile.am: Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers. This fixes compilation if FLAC is installed in an uncommon location that is not already handled by other CFLAGS. Fixes bug #558711.
Diffstat (limited to 'ext/flac')
-rw-r--r--ext/flac/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/flac/Makefile.am b/ext/flac/Makefile.am
index 0e7d41a2..24be2b6f 100644
--- a/ext/flac/Makefile.am
+++ b/ext/flac/Makefile.am
@@ -1,7 +1,7 @@
plugin_LTLIBRARIES = libgstflac.la
libgstflac_la_SOURCES = gstflac.c gstflacdec.c gstflacenc.c gstflactag.c
-libgstflac_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
+libgstflac_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(FLAC_CFLAGS)
libgstflac_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \
-lgstaudio-$(GST_MAJORMINOR) \