From be38e07c4e511c075f9a30c67a4385bbb1d30594 Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Sat, 25 Jun 2005 14:41:38 +0000 Subject: [PATCH] Fix broken build on older gcc's caused by overzealous s/IC_/FB_/g --- pixman/ChangeLog | 5 +++++ pixman/src/icint.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pixman/ChangeLog b/pixman/ChangeLog index 972f15cc0..09d62fd69 100644 --- a/pixman/ChangeLog +++ b/pixman/ChangeLog @@ -1,3 +1,8 @@ +2005-06-25 Jeff Muizelaar + + * src/icint.h: + Fix broken build on older gcc's caused by overzealous s/IC_/FB_/g + 2005-06-24 Jeff Muizelaar * src/ic.c: diff --git a/pixman/src/icint.h b/pixman/src/icint.h index ebdd6aed5..8cf374769 100644 --- a/pixman/src/icint.h +++ b/pixman/src/icint.h @@ -793,7 +793,7 @@ fbRasterizeTrapezoid (pixman_image_t *pMask, # define _FbOnes(mask) __builtin_popcountl((mask) & 0xffffffff) # endif #else -# define ICINT_NEED_FB_ONES +# define ICINT_NEED_IC_ONES int _FbOnes(unsigned long mask); #endif