[cairo-commit] pixman/src

Carl Worth cworth at kemper.freedesktop.org
Mon Apr 10 12:06:58 PDT 2006


 pixman/src/pixman.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
diff-tree baa3436e9d8ea37c1204f752cac78a8cbc891f18 (from 08b109fb9a8c54f4764fe7a94ce7833e832bc157)
Author: Laxmi Harikumar <laxmi.harikumar at digital.com>
Date:   Mon Apr 10 12:04:01 2006 -0700

    Simple fix for build failure on DEC/OSF1.
    
    Apparently this platform also requires inttypes.h rather than
    stdint.h.
    
    This should fix the bug reported here:
    
            https://bugzilla.mozilla.org/show_bug.cgi?id=331428

diff --git a/pixman/src/pixman.h b/pixman/src/pixman.h
index ecba78a..00884e7 100644
--- a/pixman/src/pixman.h
+++ b/pixman/src/pixman.h
@@ -81,7 +81,7 @@ SOFTWARE.
 
 #if defined (__SVR4) && defined (__sun)
 # include <sys/int_types.h>
-#elif defined (__OpenBSD__) || defined (_AIX)
+#elif defined (__OpenBSD__) || defined (_AIX) || defined (__osf__)
 # include <inttypes.h>
 #elif defined (_MSC_VER)
   typedef __int8 int8_t;


More information about the cairo-commit mailing list