Changeset 96464 in vbox for trunk/src/libs/libxml2-2.9.14
- Timestamp:
- Aug 24, 2022 10:34:31 PM (2 years ago)
- Location:
- trunk/src/libs/libxml2-2.9.14
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libxml2-2.9.14/Makefile.kmk
r96407 r96464 112 112 VBox-libxml2-static_TEMPLATE = VBoxR3StaticNonPedantic 113 113 VBox-libxml2-static_EXTENDS = VBox-libxml2 114 114 ifdef VBOX_WITH_NOCRT_STATIC 115 VBox-libxml2-static_DEFS = $(VBox-libxml2_DEFS) IPRT_NO_CRT_FOR_3RD_PARTY 116 endif 115 117 116 118 include $(FILE_KBUILD_SUB_FOOTER) -
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 -
trunk/src/libs/libxml2-2.9.14/xmlmemory.c
r95312 r96464 965 965 { 966 966 #ifdef HAVE_STDLIB_H 967 #ifdef VBOX 968 const char *breakpoint; 969 #else 967 970 char *breakpoint; 971 #endif 968 972 #endif 969 973 #ifdef DEBUG_MEMORY
Note:
See TracChangeset
for help on using the changeset viewer.