Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: third_party/libxslt/libxslt/libxslt.h

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove suppressions, have landed in blink now Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libxslt/libxslt/libxslt.h
diff --git a/third_party/libxslt/libxslt/libxslt.h b/third_party/libxslt/libxslt/libxslt.h
index 2b9f52a9fd52261886e87e9fe47a2a36b0b18cee..e6d4c831f90d8b60aee5b33ef4efda88627c20c9 100644
--- a/third_party/libxslt/libxslt/libxslt.h
+++ b/third_party/libxslt/libxslt/libxslt.h
@@ -23,8 +23,14 @@
#if (defined (__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
#define LIBXSLT_PUBLIC __declspec(dllimport)
#else
-#define LIBXSLT_PUBLIC
+#define LIBXSLT_PUBLIC
#endif
#endif
+#if defined(_MSC_VER) || defined(__MINGW32__)
+#include <io.h>
+#include <direct.h>
+#define mkdir(p,m) _mkdir(p)
+#endif
+
#endif /* ! __XSLT_LIBXSLT_H__ */

Powered by Google App Engine
This is Rietveld 408576698