summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorJoão Abecasis <joao@abecasis.name>2009-10-29 15:32:03 +0100
committerJoão Abecasis <joao@abecasis.name>2009-10-29 18:38:49 +0100
commit764d195bfa252775702bffc93989a35d0c19f035 (patch)
treee92f4b77e687abc23bcdd7fa4c2d656df0275957 /mkspecs
parent79da7bb4739f9f63178ce5146702dce6b8feafb9 (diff)
Turns out 64-bit fseek/ftell are not available on VS 2003/2002...
Not when linking dynamically to the CRT (/MT). So we can't rely on them. The declarations for those are also not on the standard headers. Reverts "(MSVC 2002/2003) Use 64-bit versions of ftell and fseek", fixes return type of QT_FTELL and skips known failures on large-file test case.
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/win32-msvc.net/qplatformdefs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/mkspecs/win32-msvc.net/qplatformdefs.h b/mkspecs/win32-msvc.net/qplatformdefs.h
index e3e287e59c..da092facbc 100644
--- a/mkspecs/win32-msvc.net/qplatformdefs.h
+++ b/mkspecs/win32-msvc.net/qplatformdefs.h
@@ -115,8 +115,10 @@
#define QT_FOPEN ::fopen
#ifdef QT_LARGEFILE_SUPPORT
-#define QT_FSEEK ::_fseeki64
-#define QT_FTELL ::_ftelli64
+// 64-bit versions of fseek/ftell not always available. E.g., when linking
+// dynamically to CRT (/MT)
+#define QT_FSEEK ::fseek
+#define QT_FTELL (QT_OFF_T)::ftell
#else
#define QT_FSEEK ::fseek
#define QT_FTELL ::ftell