Bug #5549: Fix build for sparc64. (Matthieu Herrb)

This commit is contained in:
Adam Jackson 2006-03-20 18:43:18 +00:00
parent 6eb4e2303a
commit 61a020265c
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,9 @@
unprivileged users can set the modulepath and run arbitrary code.
Patch from Matthieu Herrb. (CVE-2006-0745, Coverity #4)
* cfb/cfbrrop.h:
Bug #5549: Fix build for sparc64. (Matthieu Herrb)
2006-03-16 Kristian Høgsberg <krh@redhat.com>
* configure.ac: Check for glproto when building GLX and make sure

View File

@ -284,6 +284,7 @@ in this Software without prior written authorization from The Open Group.
#define RROP_UNROLL_CASE4(p,i) RROP_UNROLL_CASE2(p,(i)+2) RROP_UNROLL_CASE2(p,i)
#define RROP_UNROLL_CASE8(p,i) RROP_UNROLL_CASE4(p,(i)+4) RROP_UNROLL_CASE4(p,i)
#define RROP_UNROLL_CASE16(p,i) RROP_UNROLL_CASE8(p,(i)+8) RROP_UNROLL_CASE8(p,i)
#define RROP_UNROLL_CASE32(p,i) RROP_UNROLL_CASE16(p,(i)+16) RROP_UNROLL_CASE16(p,i)
#define RROP_UNROLL_CASE3(p) RROP_UNROLL_CASE2(p,2) RROP_UNROLL_CASE1(p,1)
#define RROP_UNROLL_CASE7(p) RROP_UNROLL_CASE4(p,4) RROP_UNROLL_CASE3(p)
#define RROP_UNROLL_CASE15(p) RROP_UNROLL_CASE8(p,8) RROP_UNROLL_CASE7(p)