فهرست منبع

Sharpened check for 64-bit Unix when defining fseek/ftell macros.

This fixes the issues with VxWorks, as mentioned by @razr in #786.
John Senneker 6 سال پیش
والد
کامیت
1fdee25d11
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tinyxml2.cpp

+ 1 - 1
tinyxml2.cpp

@@ -106,7 +106,7 @@ distribution.
 #elif defined(__APPLE__)
 	#define TIXML_FSEEK fseeko
 	#define TIXML_FTELL ftello
-#elif defined(__x86_64__)
+#elif defined(__unix__) && defined(__x86_64__)
 	#define TIXML_FSEEK fseeko64
 	#define TIXML_FTELL ftello64
 #else