mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
94bcb7452d
Original commit message from CVS: 2005-10-02 Andy Wingo <wingo@pobox.com> * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base. * ext/flac/gstflacenc.c: Ported to 0.9. * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better. * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs, and link to gsttagedit. Enable flacenc. * ext/flac/gstflacdec.c: Re-enable tag reading.
10 lines
429 B
Makefile
10 lines
429 B
Makefile
plugin_LTLIBRARIES = libgstflac.la
|
|
|
|
libgstflac_la_SOURCES = gstflac.c gstflacdec.c gstflacenc.c
|
|
#gstflacenc.c gstflactag.c
|
|
libgstflac_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstflac_la_LIBADD = $(GST_LIBS) $(FLAC_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgsttagedit-@GST_MAJORMINOR@
|
|
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstflacenc.h gstflacdec.h flac_compat.h gstflactag.h
|