diff options
-rw-r--r-- | AUTHORS | 5 | ||||
-rw-r--r-- | configure.ac | 21 |
2 files changed, 25 insertions, 1 deletions
@@ -335,5 +335,8 @@ Chris Purnell <cjp@lost.org.uk> James Stembridge <jstembridge@gmx.net> several VIDIX driver updates and improvements - + +Mattias Eriksson <snaggen@acc.umu.se> + ported nvtv/tvmode code + (let us know if we've forgotten anyone) diff --git a/configure.ac b/configure.ac index 5077a52ec..578f267c1 100644 --- a/configure.ac +++ b/configure.ac @@ -256,6 +256,26 @@ if test x"$no_x" != "xyes"; then fi AM_CONDITIONAL(HAVE_X11, [test x"$no_x" != "xyes"]) +dnl --------------------------------------------- +dnl tvmode support using nvtv +dnl --------------------------------------------- +AC_ARG_ENABLE(nvtv, + [ --enable-nvtv use nvtv for output fullscreen to TV], + enable_nvtv=$enableval, + enable_nvtv=no) + +AC_MSG_CHECKING(for nvtv support) + +XINE_HAVE_NVTV="#undef XINE_HAVE_NVTV" +if test x"$enable_nvtv" = "xyes" -a x"$no_x" != "xyes"; then + AC_MSG_RESULT(enabled) + XINE_HAVE_NVTV="#define XINE_HAVE_NVTV 1" +else + AC_MSG_RESULT(disabled) +fi +AC_SUBST(XINE_HAVE_NVTV) + +AM_CONDITIONAL(HAVE_NVTV, [test x"$enable_nvtv" = "xyes" -a x"$no_x" != "xyes"]) dnl --------------------------------------------- dnl zlib @@ -1248,6 +1268,7 @@ src/video_out/vidix/Makefile src/video_out/vidix/drivers/Makefile src/xine-utils/Makefile src/xine-engine/Makefile +src/xine-engine/nvtv/Makefile src/xine-engine/xineintl.h]) AC_CONFIG_COMMANDS([default],[[chmod +x ./misc/SlackBuild ./misc/build_rpms.sh ./misc/relchk.sh]],[[]]) AC_OUTPUT |