diff options
author | aavit <qt-info@nokia.com> | 2010-02-24 11:04:56 (GMT) |
---|---|---|
committer | aavit <qt-info@nokia.com> | 2010-02-24 11:04:56 (GMT) |
commit | 063d95a4aa4bf5f3e1373121df743c39d4aa5326 (patch) | |
tree | 4a5f72e29992842d23398a71caaff11a8408592d | |
parent | e573588ed941a9d270b5c0644cb4150f7ef05b6a (diff) | |
download | Qt-063d95a4aa4bf5f3e1373121df743c39d4aa5326.zip Qt-063d95a4aa4bf5f3e1373121df743c39d4aa5326.tar.gz Qt-063d95a4aa4bf5f3e1373121df743c39d4aa5326.tar.bz2 |
WinCE compilation fix
-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() |