summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraavit <qt-info@nokia.com>2010-02-24 11:04:56 (GMT)
committerRohan McGovern <rohan.mcgovern@nokia.com>2010-02-24 22:45:17 (GMT)
commite8aefb6bb44285a15cf47b38f3412b9eaa8139e9 (patch)
treec6c01cc7337f0c743fab9f2e9d51b731119a2b33
parentaf4f30abb88d242d1e310914b53bc91b24e45a59 (diff)
downloadQt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.zip
Qt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.tar.gz
Qt-e8aefb6bb44285a15cf47b38f3412b9eaa8139e9.tar.bz2
WinCE compilation fix
-rw-r--r--src/3rdparty/libpng/pngconf.h2
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()