diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-10-31 18:17:50 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-10-31 18:17:50 +0000 |
commit | d18bbcf1a89d5f6469605f5010c21fba29581d32 (patch) | |
tree | a075274cf8ad0f2adc71894d8eb619a018f206fe | |
parent | 46fe1e3fa07db49c121cee13e08d6472ba83e12b (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.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ext/flac/Makefile.am | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2008-10-31 Sebastian Dröge <sebastian.droege@collabora.co.uk> + + * 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. + 2008-10-31 Wim Taymans <wim.taymans@collabora.co.uk> * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank): 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) \ |