mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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.
This commit is contained in:
parent
46fe1e3fa0
commit
d18bbcf1a8
2 changed files with 8 additions and 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>
|
2008-10-31 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
|
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
plugin_LTLIBRARIES = libgstflac.la
|
plugin_LTLIBRARIES = libgstflac.la
|
||||||
|
|
||||||
libgstflac_la_SOURCES = gstflac.c gstflacdec.c gstflacenc.c gstflactag.c
|
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 = \
|
libgstflac_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \
|
||||||
-lgstaudio-$(GST_MAJORMINOR) \
|
-lgstaudio-$(GST_MAJORMINOR) \
|
||||||
|
|
Loading…
Reference in a new issue