From e6ad7cbc00236433cb6a52c5910eb71acb6ae3f6 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Fri, 30 Apr 2004 02:25:09 +0000 Subject: add initial support for libvisual (http://libvisual.sourceforge.net) libvisual is still quite alpha, so expect crashe... Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/libvisual/Makefile.am: * ext/libvisual/visual.c: add initial support for libvisual (http://libvisual.sourceforge.net) libvisual is still quite alpha, so expect crashes in there :) --- ChangeLog | 9 +++++++++ configure.ac | 10 ++++++++++ ext/Makefile.am | 8 ++++++++ 3 files changed, 27 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7cf539d9..f7b50005 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-04-30 Benjamin Otte + + * configure.ac: + * ext/Makefile.am: + * ext/libvisual/Makefile.am: + * ext/libvisual/visual.c: + add initial support for libvisual (http://libvisual.sourceforge.net) + libvisual is still quite alpha, so expect crashes in there :) + 2004-04-29 David Schleef * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse), diff --git a/configure.ac b/configure.ac index c4778101..6d9b3306 100644 --- a/configure.ac +++ b/configure.ac @@ -1164,6 +1164,15 @@ GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [ AC_SUBST(LIBRFB_LIBS) ]) +dnl *** libvisual *** +translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true) +GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [ + PKG_CHECK_MODULES(LIBVISUAL, libvisual, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no") + AC_SUBST(LIBVISUAL_CFLAGS) + AC_SUBST(LIBVISUAL_LIBS) +]) + +dnl *** mad *** dnl *** mad *** dnl FIXME: we could use header checks here as well IMO translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true) @@ -1809,6 +1818,7 @@ ext/libcaca/Makefile ext/libfame/Makefile ext/libpng/Makefile ext/librfb/Makefile +ext/libvisual/Makefile ext/mad/Makefile ext/mikmod/Makefile ext/mpeg2dec/Makefile diff --git a/ext/Makefile.am b/ext/Makefile.am index be9169db..4ce5cc86 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -184,6 +184,12 @@ else LIBRFB_DIR= endif +if USE_LIBVISUAL +LIBVISUAL_DIR=libvisual +else +LIBVISUAL_DIR= +endif + if USE_MAD MAD_DIR=mad else @@ -360,6 +366,7 @@ SUBDIRS=\ $(LIBFAME_DIR) \ $(LIBPNG_DIR) \ $(LIBRFB_DIR) \ + $(LIBVISUAL_DIR) \ $(MAD_DIR) \ $(MIKMOD_DIR) \ $(MPEG2DEC_DIR) \ @@ -416,6 +423,7 @@ DIST_SUBDIRS=\ libfame \ libpng \ librfb \ + libvisual \ mad \ mikmod \ mpeg2dec \ -- cgit v1.2.1