diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-29 20:56:32 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-29 20:56:32 +0000 |
commit | c8530f30a9acaaaa3743af4bf5bed97c65231291 (patch) | |
tree | 69ea153a312c4921247e6c1371e09a7d87bd2d8a | |
parent | 5482c33a3e993063059e2275af6045bd869cd692 (diff) | |
download | xine-lib-c8530f30a9acaaaa3743af4bf5bed97c65231291.tar.gz xine-lib-c8530f30a9acaaaa3743af4bf5bed97c65231291.tar.bz2 |
Disable pgx64 video_out plugin on Solaris x86 (it contains inline SPARC
assember code)
CVS patchset: 3096
CVS date: 2002/10/29 20:56:32
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 522123b50..68753044b 100644 --- a/configure.ac +++ b/configure.ac @@ -400,9 +400,13 @@ AM_PATH_AALIB(1.4,, AC_MSG_RESULT([*** All of AALIB dependent parts will be disa AM_CONDITIONAL(HAVE_AA, test x$no_aalib != "xyes") dnl --------------------------------------------- -dnl Check solaris framebuffer device support +dnl Check solaris framebuffer device support (only on Solaris SPARC) dnl --------------------------------------------- AC_CHECK_HEADER(sys/fbio.h, ac_have_sunfb=yes,) +case $host in +sparc*) ;; +*) ac_have_sunfb=no ;; +esac AM_CONDITIONAL(HAVE_SUNFB, [test x"$ac_have_sunfb" = "xyes"]) dnl --------------------------------------------- |