Changeset 96464 in vbox for trunk/src/libs/libxml2-2.9.14/xmlIO.c
- Timestamp:
- Aug 24, 2022 10:34:31 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libxml2-2.9.14/xmlIO.c
r95312 r96464 191 191 }; 192 192 193 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)193 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 194 194 /** 195 195 * __xmlIOWin32UTF8ToWChar: … … 596 596 ************************************************************************/ 597 597 598 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)598 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 599 599 600 600 /** … … 697 697 { 698 698 #ifdef HAVE_STAT 699 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)699 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 700 700 struct _stat stat_buffer; 701 701 #else … … 707 707 708 708 #ifdef HAVE_STAT 709 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)709 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 710 710 /* 711 711 * On Windows stat and wstat do not work with long pathname, … … 864 864 #endif 865 865 866 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)866 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 867 867 fd = xmlWrapOpenUtf8(path, 0); 868 868 #else … … 937 937 return(NULL); 938 938 939 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)939 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 940 940 fd = xmlWrapOpenUtf8(path, 1); 941 941 #elif(__MVS__) … … 1129 1129 return(NULL); 1130 1130 1131 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)1131 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 1132 1132 fd = xmlWrapGzOpenUtf8(path, "rb"); 1133 1133 #else … … 1206 1206 return(NULL); 1207 1207 1208 #if defined(_WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)1208 #if (defined(_WIN32) || defined (__DJGPP__)) && !defined (__CYGWIN__) && !defined(IPRT_NO_CRT) 1209 1209 fd = xmlWrapGzOpenUtf8(path, mode); 1210 1210 #else
Note:
See TracChangeset
for help on using the changeset viewer.