Commit 9edc2a46 authored by Loïc Minier's avatar Loïc Minier

* basic On Screen Display intf-plugin based on libxosd

parent 5a895839
......@@ -64,7 +64,8 @@ PLUGINS_DIR := a52 \
text \
vcd \
win32 \
x11
x11 \
xosd
PLUGINS_TARGETS := a52/a52 \
aa/aa \
......@@ -158,7 +159,8 @@ PLUGINS_TARGETS := a52/a52 \
win32/waveout \
win32/intfwin \
x11/x11 \
x11/xvideo
x11/xvideo \
xosd/xosd
#
# C Objects
......
......@@ -125,6 +125,7 @@ vcd_LDFLAGS = @vcd_LDFLAGS@
vorbis_LDFLAGS = @vorbis_LDFLAGS@
waveout_LDFLAGS = @waveout_LDFLAGS@
x11_LDFLAGS = @x11_LDFLAGS@
xosd_LDFLAGS = @xosd_LDFLAGS@
xvideo_LDFLAGS = @xvideo_LDFLAGS@
#
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -1496,6 +1496,21 @@ AC_ARG_ENABLE(ncurses,
ncurses_LDFLAGS="${ncurses_LDFLAGS} -lncurses"
fi])
dnl
dnl XOSD plugin
dnl
AC_ARG_ENABLE(xosd,
[ --enable-xosd xosd interface support (default disabled)]
if test x$enable_xosd = xyes
then
AC_CHECK_HEADER(xosd.h), AC_CHECK_LIB(xosd, xosd_init, have_xosd="true", have_xosd="false")
if test x$have_xosd = xyes
then
PLUGINS="${PLUGINS} xosd"
xosd_LDFLAGS="${xosd_LDFLAGS} -lxosd"
fi
fi
dnl
dnl Lirc plugin
dnl
......@@ -1771,6 +1786,7 @@ AC_SUBST(vorbis_LDFLAGS)
AC_SUBST(waveout_LDFLAGS)
AC_SUBST(x11_LDFLAGS)
AC_SUBST(xvideo_LDFLAGS)
AC_SUBST(xosd_LDFLAGS)
AC_OUTPUT([Makefile.config Makefile.opts po/Makefile.in])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment