diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-11 19:10:08 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-11 19:10:08 +0000 |
commit | 7840bc92ee5a058b4c294c156c594f1bd823a204 (patch) | |
tree | d73d5f16dd4aa01b5fb7e2ce84d94a35093e46ac | |
parent | 9e28ea68ec5b40e91979d9a8db76d88f98048b34 (diff) | |
download | xine-lib-7840bc92ee5a058b4c294c156c594f1bd823a204.tar.gz xine-lib-7840bc92ee5a058b4c294c156c594f1bd823a204.tar.bz2 |
linux framebuffer device
CVS patchset: 1391
CVS date: 2002/01/11 19:10:08
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 10 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,4 @@ + * Linux framebuffer video out driver (experimental) * several bugfixes * still frame detection * closed caption decoding diff --git a/configure.in b/configure.in index dc2281793..e11978add 100644 --- a/configure.in +++ b/configure.in @@ -304,6 +304,11 @@ dnl AM_PATH_AALIB(1.2,, AC_MSG_RESULT([*** All of AALIB dependent parts will be disabled ***])) AM_CONDITIONAL(HAVE_AA, test x$no_aalib != "xyes") +dnl +dnl Check linux framebuffer device support +dnl +AC_CHECK_HEADER(linux/fb.h,have_fb=yes,) +AM_CONDITIONAL(HAVE_FB, [test x"$have_fb" = "xyes"]) dnl dnl Check for divx4 @@ -900,6 +905,9 @@ fi if test x$no_aalib != "xyes"; then echo " - aa (Ascii ART)" fi +if test x$have_fb = "xyes"; then + echo " - fb (Linux framebuffer device)" +fi if test x"$have_dxr3" = "xyes"; then if test x"$have_encoder" = "xyes"; then echo " - dxr3 (Hollywood+ and Creative dxr3, both mpeg and non-mpeg video)" @@ -926,7 +934,7 @@ if test x"$no_esd" != "xyes"; then echo " - esd (Enlightened Sound Daemon)" fi if test x"$no_arts" != "xyes"; then - echo " - arts ()" + echo " - arts (aRts - KDE soundserver)" fi if test x"$have_sunaudio" = "xyes"; then echo " - sun ()" |