From 0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 8 Feb 2005 10:37:43 +0000 Subject: Include "_stdint.h" instead of . Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #1... Original commit message from CVS: Include "_stdint.h" instead of . Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #166631). --- ext/tarkin/mem.h | 2 +- ext/tarkin/wavelet.h | 2 +- ext/tarkin/yuv.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/tarkin') diff --git a/ext/tarkin/mem.h b/ext/tarkin/mem.h index f218f8e4..4cd85183 100644 --- a/ext/tarkin/mem.h +++ b/ext/tarkin/mem.h @@ -1,7 +1,7 @@ #ifndef __MEM_H #define __MEM_H -#include +#include "_stdint.h" #include #include #include diff --git a/ext/tarkin/wavelet.h b/ext/tarkin/wavelet.h index 914c2799..d05bb514 100644 --- a/ext/tarkin/wavelet.h +++ b/ext/tarkin/wavelet.h @@ -1,7 +1,7 @@ #ifndef __WAVELET_H #define __WAVELET_H -#include +#include "_stdint.h" typedef struct { diff --git a/ext/tarkin/yuv.h b/ext/tarkin/yuv.h index 42ceb072..036fc354 100644 --- a/ext/tarkin/yuv.h +++ b/ext/tarkin/yuv.h @@ -2,7 +2,7 @@ #ifndef __YUV_H #define __YUV_H -#include +#include "_stdint.h" #include "wavelet.h" extern void rgb24_to_yuv (uint8_t *rgb, Wavelet3DBuf *yuv [], uint32_t frame); -- cgit v1.2.1