[poppler] qt4/tests qt5/tests
Albert Astals Cid
aacid at kemper.freedesktop.org
Fri Oct 31 14:57:47 PDT 2014
qt4/tests/stress-threads-qt4.cpp | 2 +-
qt5/tests/stress-threads-qt5.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 06dd7dc337c7db6122329e98783a126d59035aff
Author: Hib Eris <hib at hiberis.nl>
Date: Thu May 29 12:45:33 2014 +0200
Include windows.h, not Windows.h
Fixes building on file systems that are case sensitive, e.g. when
cross compiling on Linux for win32.
https://bugs.freedesktop.org/show_bug.cgi?id=79407
diff --git a/qt4/tests/stress-threads-qt4.cpp b/qt4/tests/stress-threads-qt4.cpp
index 22f7f1e..00968de 100644
--- a/qt4/tests/stress-threads-qt4.cpp
+++ b/qt4/tests/stress-threads-qt4.cpp
@@ -2,7 +2,7 @@
#ifndef _WIN32
#include <unistd.h>
#else
-#include <Windows.h>
+#include <windows.h>
#define sleep Sleep
#endif
#include <time.h>
diff --git a/qt5/tests/stress-threads-qt5.cpp b/qt5/tests/stress-threads-qt5.cpp
index 36d75dc..283d014 100644
--- a/qt5/tests/stress-threads-qt5.cpp
+++ b/qt5/tests/stress-threads-qt5.cpp
@@ -2,7 +2,7 @@
#ifndef _WIN32
#include <unistd.h>
#else
-#include <Windows.h>
+#include <windows.h>
#define sleep Sleep
#endif
#include <time.h>
More information about the poppler
mailing list