summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2014-06-06 20:27:03 +0200
committerCarlos Garcia Campos <carlosgc@gnome.org>2014-06-06 20:27:03 +0200
commit36e8194acf4b253d2d8226beb1d752300f6df89f (patch)
tree28582ebe3e522ee400522aa44156c057a4754754
parente94ff24d1393487547ea835ff5fbd8a68bf574c3 (diff)
xpdf304: Use the correct _WIN32 define instead of WIN32xpdf304merge
-rw-r--r--goo/gfile.cc4
-rw-r--r--goo/gfile.h2
-rw-r--r--poppler/GlobalParams.cc8
-rw-r--r--splash/SplashMath.h6
4 files changed, 10 insertions, 10 deletions
diff --git a/goo/gfile.cc b/goo/gfile.cc
index 6fd4cbad..8a96ffe2 100644
--- a/goo/gfile.cc
+++ b/goo/gfile.cc
@@ -422,7 +422,7 @@ GBool openTempFile(GooString **name, FILE **f, const char *mode) {
#endif
}
-#ifdef WIN32
+#ifdef _WIN32
GooString *fileNameToUTF8(char *path) {
GooString *s;
char *p;
@@ -461,7 +461,7 @@ GooString *fileNameToUTF8(wchar_t *path) {
#endif
FILE *openFile(const char *path, const char *mode) {
-#ifdef WIN32
+#ifdef _WIN32
OSVERSIONINFO version;
wchar_t wPath[_MAX_PATH + 1];
char nPath[_MAX_PATH + 1];
diff --git a/goo/gfile.h b/goo/gfile.h
index 1365a9cf..a5a4fdf3 100644
--- a/goo/gfile.h
+++ b/goo/gfile.h
@@ -104,7 +104,7 @@ extern time_t getModTime(char *fileName);
// should be "w" or "wb". Returns true on success.
extern GBool openTempFile(GooString **name, FILE **f, const char *mode);
-#ifdef WIN32
+#ifdef _WIN32
// Convert a file name from Latin-1 to UTF-8.
extern GooString *fileNameToUTF8(char *path);
diff --git a/poppler/GlobalParams.cc b/poppler/GlobalParams.cc
index 3d88646f..ed0d234e 100644
--- a/poppler/GlobalParams.cc
+++ b/poppler/GlobalParams.cc
@@ -270,7 +270,7 @@ public:
~SysFontList();
SysFontInfo *find(GooString *name, GBool isFixedWidth, GBool exact);
-#ifdef WIN32
+#ifdef _WIN32
void scanWindowsFonts(GooString *winFontDir);
#endif
#ifdef WITH_FONTCONFIGURATION_FONTCONFIG
@@ -278,7 +278,7 @@ public:
#endif
private:
-#ifdef WIN32
+#ifdef _WIN32
SysFontInfo *makeWindowsFont(char *name, int fontNum,
char *path);
#endif
@@ -1121,7 +1121,7 @@ static FcPattern *buildFcPattern(GfxFont *font, GooString *base14Name)
GooString *GlobalParams::findFontFile(GooString *fontName) {
static const char *exts[] = { ".pfa", ".pfb", ".ttf", ".ttc", ".otf" };
GooString *path, *dir;
-#ifdef WIN32
+#ifdef _WIN32
GooString *fontNameU;
#endif
const char *ext;
@@ -1139,7 +1139,7 @@ GooString *GlobalParams::findFontFile(GooString *fontName) {
dir = (GooString *)fontDirs->get(i);
for (j = 0; j < (int)(sizeof(exts) / sizeof(exts[0])); ++j) {
ext = exts[j];
-#ifdef WIN32
+#ifdef _WIN32
fontNameU = fileNameToUTF8(fontName->getCString());
path = appendToPath(dir->copy(), fontNameU->getCString());
delete fontNameU;
diff --git a/splash/SplashMath.h b/splash/SplashMath.h
index ca73c2bd..55089854 100644
--- a/splash/SplashMath.h
+++ b/splash/SplashMath.h
@@ -64,7 +64,7 @@ static inline int splashFloor(SplashCoord x) {
: "=m" (oldCW), "=m" (newCW), "=m" (result), "=r" (t)
: "m" (x));
return result;
- #elif defined(WIN32) && defined(_M_IX86)
+ #elif defined(_WIN32) && defined(_M_IX86)
// floor() and (int)() are implemented separately, which results
// in changing the FPCW multiple times - so we optimize it with
// some inline assembly
@@ -111,7 +111,7 @@ static inline int splashCeil(SplashCoord x) {
: "=m" (oldCW), "=m" (newCW), "=m" (result), "=r" (t)
: "m" (x));
return result;
-#elif defined(WIN32) && defined(_M_IX86)
+#elif defined(_WIN32) && defined(_M_IX86)
// ceil() and (int)() are implemented separately, which results
// in changing the FPCW multiple times - so we optimize it with
// some inline assembly
@@ -156,7 +156,7 @@ static inline int splashRound(SplashCoord x) {
: "=m" (oldCW), "=m" (newCW), "=m" (result), "=r" (t)
: "m" (x));
return result;
-#elif defined(WIN32) && defined(_M_IX86)
+#elif defined(_WIN32) && defined(_M_IX86)
// this could use round-to-nearest mode and avoid the "+0.5",
// but that produces slightly different results (because i+0.5
// sometimes rounds up and sometimes down using the even rule)