diff options
author | aavit <qt-info@nokia.com> | 2010-02-24 11:04:56 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2010-02-24 22:45:17 (GMT) |
commit | e8aefb6bb44285a15cf47b38f3412b9eaa8139e9 (patch) | |
tree | c6c01cc7337f0c743fab9f2e9d51b731119a2b33 /src | |
parent | af4f30abb88d242d1e310914b53bc91b24e45a59 (diff) | |
download | Qt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.zip Qt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.tar.gz Qt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.tar.bz2 |
WinCE compilation fix
Diffstat (limited to 'src')
-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 5d202db..1f8bef8 100644 --- a/src/3rdparty/libpng/pngconf.h +++ b/src/3rdparty/libpng/pngconf.h @@ -1379,7 +1379,7 @@ typedef char FAR * FAR * FAR * png_charppp; /* memory model/platform independent fns */ #ifndef PNG_ABORT -# ifdef _WINDOWS_ +# if defined(_WINDOWS_) || defined(_WIN32_WCE) # define PNG_ABORT() ExitProcess(0) # else # define PNG_ABORT() abort() |