chithanh 14/10/23 15:01:49 Added: xf86-video-nouveau-1.0.11-glamor-automagic.patch Removed: xf86-video-nouveau-1.0.9-immintrin-include.patch Log: Version bump, bug #523682. (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!)
Revision Changes Path 1.1 x11-drivers/xf86-video-nouveau/files/xf86-video-nouveau-1.0.11-glamor-automagic.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-nouveau/files/xf86-video-nouveau-1.0.11-glamor-automagic.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-nouveau/files/xf86-video-nouveau-1.0.11-glamor-automagic.patch?rev=1.1&content-type=text/plain Index: xf86-video-nouveau-1.0.11-glamor-automagic.patch =================================================================== diff -ur a/configure.ac b/configure.ac --- a/configure.ac 2014-09-03 21:29:04.000000000 +0200 +++ b/configure.ac 2014-10-23 16:31:21.117695404 +0200 @@ -140,17 +140,29 @@ #include "list.h"]) fi -AC_CHECK_HEADERS([glamor.h],[found_glamor_header=yes],[found_glamor_header=no], - [#include "xorg-server.h"]) -AC_MSG_CHECKING([whether to include GLAMOR support]) -if test "x$found_glamor_header" = xyes && pkg-config --exists "xorg-server >= 1.15.99.901" -then - AC_DEFINE(HAVE_GLAMOR, 1, [Build support for glamor acceleration]) - AC_MSG_RESULT([yes]) -else - AC_MSG_RESULT([no]) +AC_ARG_ENABLE(glamor, + AS_HELP_STRING([--enable-glamor], + [Enable glamor, a new GL-based acceleration [default=auto]]), + [GLAMOR="$enableval"], + [GLAMOR=auto]) + +if test "x$GLAMOR" != "xno"; then + AC_CHECK_HEADERS([glamor.h],[found_glamor_header=yes],[found_glamor_header=no], + [#include "xorg-server.h"]) + AC_MSG_CHECKING([whether to include GLAMOR support]) + if test "x$found_glamor_header" = xyes && pkg-config --exists "xorg-server >= 1.15.99.901" + then + AC_DEFINE(HAVE_GLAMOR, 1, [Build support for glamor acceleration]) + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + if test "x$GLAMOR" != "xauto"; then + AC_MSG_ERROR([failed to find required Xorg headers for glamor]) + fi + fi fi + AC_CONFIG_FILES([ Makefile src/Makefile
