mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 13:36:39 +00:00
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 :)
This commit is contained in:
parent
2dcb230ebd
commit
a5d678d9fe
3 changed files with 27 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2004-04-30 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* 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 <ds@schleef.org>
|
2004-04-29 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
|
* gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -1164,6 +1164,15 @@ GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [
|
||||||
AC_SUBST(LIBRFB_LIBS)
|
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 *** mad ***
|
||||||
dnl FIXME: we could use header checks here as well IMO
|
dnl FIXME: we could use header checks here as well IMO
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
||||||
|
@ -1809,6 +1818,7 @@ ext/libcaca/Makefile
|
||||||
ext/libfame/Makefile
|
ext/libfame/Makefile
|
||||||
ext/libpng/Makefile
|
ext/libpng/Makefile
|
||||||
ext/librfb/Makefile
|
ext/librfb/Makefile
|
||||||
|
ext/libvisual/Makefile
|
||||||
ext/mad/Makefile
|
ext/mad/Makefile
|
||||||
ext/mikmod/Makefile
|
ext/mikmod/Makefile
|
||||||
ext/mpeg2dec/Makefile
|
ext/mpeg2dec/Makefile
|
||||||
|
|
|
@ -184,6 +184,12 @@ else
|
||||||
LIBRFB_DIR=
|
LIBRFB_DIR=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if USE_LIBVISUAL
|
||||||
|
LIBVISUAL_DIR=libvisual
|
||||||
|
else
|
||||||
|
LIBVISUAL_DIR=
|
||||||
|
endif
|
||||||
|
|
||||||
if USE_MAD
|
if USE_MAD
|
||||||
MAD_DIR=mad
|
MAD_DIR=mad
|
||||||
else
|
else
|
||||||
|
@ -360,6 +366,7 @@ SUBDIRS=\
|
||||||
$(LIBFAME_DIR) \
|
$(LIBFAME_DIR) \
|
||||||
$(LIBPNG_DIR) \
|
$(LIBPNG_DIR) \
|
||||||
$(LIBRFB_DIR) \
|
$(LIBRFB_DIR) \
|
||||||
|
$(LIBVISUAL_DIR) \
|
||||||
$(MAD_DIR) \
|
$(MAD_DIR) \
|
||||||
$(MIKMOD_DIR) \
|
$(MIKMOD_DIR) \
|
||||||
$(MPEG2DEC_DIR) \
|
$(MPEG2DEC_DIR) \
|
||||||
|
@ -416,6 +423,7 @@ DIST_SUBDIRS=\
|
||||||
libfame \
|
libfame \
|
||||||
libpng \
|
libpng \
|
||||||
librfb \
|
librfb \
|
||||||
|
libvisual \
|
||||||
mad \
|
mad \
|
||||||
mikmod \
|
mikmod \
|
||||||
mpeg2dec \
|
mpeg2dec \
|
||||||
|
|
Loading…
Reference in a new issue