diff options
author | Richard Boulton <richard@tartarus.org> | 2000-08-19 00:29:57 +0000 |
---|---|---|
committer | Richard Boulton <richard@tartarus.org> | 2000-08-19 00:29:57 +0000 |
commit | cf0a34528d618eeda1ad7066d0370f6d0ae70fa7 (patch) | |
tree | 10c3346f0ebedccc49453e9a4aef3a0f08ecb5f6 | |
parent | 9ae673e291cf0107034065dff25dd35e7db09f02 (diff) |
libXv is now linked against by test/* and gstplay if it is present.
Original commit message from CVS:
libXv is now linked against by test/* and gstplay if it is present.
-lXv isn't leaked all over the place due to AC_CHECK_LIB test.
This is still messy though - we shouldn't have to link explicitly
with extra things just because we use certain plugins.
Build Makefile in tests, but don't recurse into tests when doing the
build (tests no longer in SUBDIRS).
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | config.h.in | 3 | ||||
-rw-r--r-- | configure.in | 8 | ||||
-rw-r--r-- | gstplay/Makefile.am | 8 | ||||
-rw-r--r-- | test/Makefile.am | 11 |
5 files changed, 22 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am index efb89834f..7ddfdb16d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ gstplay_subdir= endif # These are the subdirs which might get used. -SUBDIRS = gst libs plugins . $(gstplay_subdir) test editor tools docs tests +SUBDIRS = gst libs plugins . $(gstplay_subdir) test editor tools docs # tests # These are all the possible subdirs DIST_SUBDIRS = gst libs plugins . gstplay test editor tools docs tests diff --git a/config.h.in b/config.h.in index dc954e2c1..23093e243 100644 --- a/config.h.in +++ b/config.h.in @@ -24,9 +24,6 @@ #undef DEBUG_ENABLED -/* Define if you have the Xv library (-lXv). */ -#undef HAVE_LIBXV - /* Name of package */ #undef PACKAGE diff --git a/configure.in b/configure.in index 55c3449e1..3995af79a 100644 --- a/configure.in +++ b/configure.in @@ -129,7 +129,6 @@ else [Couldn't find gnome libraries for libglade - Can't build gstplay]) ) CFLAGS=${libglade_save_CFLAGS} - AC_MSG_WARN() fi dnl Check for atomic.h @@ -183,8 +182,9 @@ AC_SUBST(X_PRE_LIBS) AC_SUBST(X_EXTRA_LIBS) AC_SUBST(X_LIBS) -AC_CHECK_LIB(Xv, XvQueryExtension,,, - $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS) +xvsave_LIBS=${LIBS} +AC_CHECK_LIB(Xv, XvQueryExtension, HAVE_LIBXV=yes, HAVE_LIBXV=no, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS) +LIBS=${xvsave_LIBS} dnl Check for xaudio AC_CHECK_HEADER(xaudio/decoder.h,[ @@ -339,6 +339,7 @@ AM_CONDITIONAL(HAVE_XAUDIO, test "x$HAVE_XAUDIO" = "xyes") AM_CONDITIONAL(HAVE_CSSAUTH, test "x$HAVE_CSSAUTH" = "xyes") AM_CONDITIONAL(HAVE_NASM, test "x$HAVE_NASM" = "xyes") AM_CONDITIONAL(HAVE_LIBGLADE_GNOME, test "x$HAVE_LIBGLADE_GNOME" = "xyes") +AM_CONDITIONAL(HAVE_LIBXV, test "x$HAVE_LIBXV" = "xyes") AM_CONDITIONAL(HAVE_GTK_DOC, $HAVE_GTK_DOC) @@ -426,6 +427,7 @@ test/Makefile test/xml/Makefile test/bindings/Makefile test/cothreads/Makefile +tests/Makefile editor/Makefile tools/Makefile docs/Makefile diff --git a/gstplay/Makefile.am b/gstplay/Makefile.am index d7a3c1c7d..63981b300 100644 --- a/gstplay/Makefile.am +++ b/gstplay/Makefile.am @@ -22,7 +22,13 @@ CFLAGS += -O2 -Wall -DDATADIR=\""$(gladedir)/"\" gstplay_CFLAGS = $(shell gnome-config --cflags gnomeui) $(shell libglade-config --cflags gnome) gstplay_LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome) +if HAVE_LIBXV +xvlibs=-lXv +else +xvlibs= +endif + gstplay_LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \ - $(top_builddir)/plugins/videosink/gdkxvimage.lo -lXv -lXxf86vm + $(top_builddir)/plugins/videosink/gdkxvimage.lo ${xvlibs} -lXxf86vm diff --git a/test/Makefile.am b/test/Makefile.am index 32428c8ca..257d0d9ba 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -15,8 +15,15 @@ ac3play_SOURCES = ac3play.c mem.c noinst_HEADERS = mem.h -LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \ - $(top_builddir)/plugins/videosink/gdkxvimage.lo -lXv -lXxf86vm +if HAVE_LIBXV +xvlibs=-lXv +else +xvlibs= +endif + +LDADD = $(top_builddir)/gst/libgst.la \ + $(GLIB_LIBS) $(GTK_LIBS) \ + $(top_builddir)/plugins/videosink/gdkxvimage.lo ${xvlibs} -lXxf86vm #LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \ # $(top_builddir)/plugins/videosink/libvideosink.la -L/usr/X11/lib -lXxf86dga |