summaryrefslogtreecommitdiffstats
path: root/ext/theora
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2007-04-29 13:53:17 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2007-04-29 13:53:17 +0000
commit2a0c6660cbba1bb5d2e468dc2218141affaa5e7c (patch)
treed55e932b475038d493359caa7539bcb333f736e8 /ext/theora
parent022bf7614da0286d252d89c50b6138a8ad112f1a (diff)
downloadgst-plugins-bad-2a0c6660cbba1bb5d2e468dc2218141affaa5e7c.tar.gz
gst-plugins-bad-2a0c6660cbba1bb5d2e468dc2218141affaa5e7c.tar.bz2
gst-plugins-bad-2a0c6660cbba1bb5d2e468dc2218141affaa5e7c.zip
autogen.sh: Require automake 1.7
Original commit message from CVS: * autogen.sh: Require automake 1.7 * ext/alsaspdif/Makefile.am: * ext/divx/Makefile.am: * ext/ivorbis/Makefile.am: * ext/musicbrainz/Makefile.am: * ext/neon/Makefile.am: * ext/sdl/Makefile.am: * ext/swfdec/Makefile.am: * ext/theora/Makefile.am: * ext/wavpack/Makefile.am: * ext/xvid/Makefile.am: * gst/modplug/Makefile.am: Fix up Makefile.am accordingly.
Diffstat (limited to 'ext/theora')
-rw-r--r--ext/theora/Makefile.am12
1 files changed, 7 insertions, 5 deletions
diff --git a/ext/theora/Makefile.am b/ext/theora/Makefile.am
index b361d96f..8f003236 100644
--- a/ext/theora/Makefile.am
+++ b/ext/theora/Makefile.am
@@ -1,12 +1,14 @@
+### FIXME: rename directory to theoraexp
+
plugin_LTLIBRARIES = libgsttheoraexp.la
noinst_HEADERS = theoradec.h
libgsttheoraexp_la_SOURCES = theoradec.c
-libgsttheoraexp_la_CFLAGS = $(GST_CFLAGS) $(THEORADEC_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
-libgsttheoraexp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgsttheoraexp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(THEORADEC_CFLAGS)
libgsttheoraexp_la_LIBADD = \
- -lgsttag-@GST_MAJORMINOR@ \
+ $(GST_PLUGINS_BASE_LIBS) \
+ -lgsttag-$(GST_MAJORMINOR) \
$(GST_LIBS) \
- $(THEORADEC_LIBS) \
- $(GST_PLUGINS_BASE_LIBS)
+ $(THEORADEC_LIBS)
+libgsttheoraexp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)