瀏覽代碼

rwops: Fixed 64-bit file i/o on QNX.

Ryan C. Gordon 9 年之前
父節點
當前提交
c7b4f2b92e
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/file/SDL_rwops.c

+ 6 - 0
src/file/SDL_rwops.c

@@ -18,8 +18,14 @@
      misrepresented as being the original software.
      misrepresented as being the original software.
   3. This notice may not be removed or altered from any source distribution.
   3. This notice may not be removed or altered from any source distribution.
 */
 */
+
+/* We won't get fseeko64 on QNX if _LARGEFILE64_SOURCE is defined, but the
+   configure script knows the C runtime has it and enables it. */
+#ifndef __QNXNTO__
 /* Need this so Linux systems define fseek64o, ftell64o and off64_t */
 /* Need this so Linux systems define fseek64o, ftell64o and off64_t */
 #define _LARGEFILE64_SOURCE
 #define _LARGEFILE64_SOURCE
+#endif
+
 #include "../SDL_internal.h"
 #include "../SDL_internal.h"
 
 
 #if defined(__WIN32__)
 #if defined(__WIN32__)