mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
d18bbcf1a8
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.
11 lines
465 B
Makefile
11 lines
465 B
Makefile
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) $(FLAC_CFLAGS)
|
|
libgstflac_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(FLAC_LIBS)
|
|
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstflacenc.h gstflacdec.h gstflactag.h
|