diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-20 10:28:28 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-20 10:28:28 (GMT) |
commit | 4b82d6f99f7c231cbba1dd5e09ecb09d2218c8bc (patch) | |
tree | 00a20183780236ec144251698575deaee3eae2a6 /src/3rdparty/libpng | |
parent | 1642c39cdc7f21cf5f183567197a19df2ab8afde (diff) | |
download | Qt-4b82d6f99f7c231cbba1dd5e09ecb09d2218c8bc.zip Qt-4b82d6f99f7c231cbba1dd5e09ecb09d2218c8bc.tar.gz Qt-4b82d6f99f7c231cbba1dd5e09ecb09d2218c8bc.tar.bz2 |
WinCE doesn't have sys/types.h
Diffstat (limited to 'src/3rdparty/libpng')
-rw-r--r-- | src/3rdparty/libpng/pngconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/libpng/pngconf.h b/src/3rdparty/libpng/pngconf.h index 9eec6d3..5d202db 100644 --- a/src/3rdparty/libpng/pngconf.h +++ b/src/3rdparty/libpng/pngconf.h @@ -330,7 +330,7 @@ #endif /* Enough people need this for various reasons to include it here */ -#if !defined(MACOS) && !defined(RISCOS) +#if !defined(MACOS) && !defined(RISCOS) && !defined(_WIN32_WCE) # include <sys/types.h> #endif |