diff options
author | Andy Wingo <wingo@pobox.com> | 2007-02-02 13:28:05 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2007-02-02 13:28:05 +0000 |
commit | 91e91243a9f7be56df0be83f39a004f04b733294 (patch) | |
tree | a7642d36ecb5c06f136f8dcd5f39f9260d733545 /ext/sndfile/Makefile.am | |
parent | 144b320afec7e17795a855fd2468dc9f23196a14 (diff) | |
download | gst-plugins-bad-91e91243a9f7be56df0be83f39a004f04b733294.tar.gz gst-plugins-bad-91e91243a9f7be56df0be83f39a004f04b733294.tar.bz2 gst-plugins-bad-91e91243a9f7be56df0be83f39a004f04b733294.zip |
configure.ac: ext/Makefile.am
Original commit message from CVS:
2007-02-02 Andy Wingo <wingo@pobox.com>
* configure.ac:
* ext/Makefile.am
* ext/sndfile/Makefile.am:
* ext/sndfile/gstsf.c:
* ext/sndfile/gstsf.h:
* ext/sndfile/gstsfsink.c:
* ext/sndfile/gstsfsink.h: Port sfsink to 0.10. Works in pull or
push mode with interleaved float or int data.
Diffstat (limited to 'ext/sndfile/Makefile.am')
-rw-r--r-- | ext/sndfile/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/sndfile/Makefile.am b/ext/sndfile/Makefile.am index 23a86d71..bd051153 100644 --- a/ext/sndfile/Makefile.am +++ b/ext/sndfile/Makefile.am @@ -1,9 +1,9 @@ plugin_LTLIBRARIES = libgstsndfile.la -libgstsndfile_la_SOURCES = gstsf.c -libgstsndfile_la_CFLAGS = $(GST_CFLAGS) $(SNDFILE_CFLAGS) -libgstsndfile_la_LIBADD = $(SNDFILE_LIBS) +libgstsndfile_la_SOURCES = gstsf.c gstsfsink.c +libgstsndfile_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SNDFILE_CFLAGS) +libgstsndfile_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SNDFILE_LIBS) libgstsndfile_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -noinst_HEADERS = gstsf.h +noinst_HEADERS = gstsf.h gstsfsink.h |