summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--TODO8
-rw-r--r--xmllint.c3
3 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 17c15368..bbc338ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
+
+ * xmllint.c: fixed compilation under Cygwin #57503
+ * TODO: update
+
2001-07-13 Peter Williams <peterw@ximian.com>
* config.h.in: add #undef HAVE_DLFCN_H
diff --git a/TODO b/TODO
index da39f666..988e5c13 100644
--- a/TODO
+++ b/TODO
@@ -6,6 +6,14 @@
this tend to be outdated :-\ ...
+DOCS:
+=====
+
+- use case of using XInclude to load for example a description.
+ order document + product base -(XSLT)-> quote with XIncludes
+ |
+ HTML output with description of parts <---(XSLT)--
+
TODO:
=====
diff --git a/xmllint.c b/xmllint.c
index 8cb17b4f..cce235b7 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -10,11 +10,14 @@
#include <string.h>
#include <stdarg.h>
+
#ifdef _WIN32
#ifdef _MSC_VER
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
#define gettimeofday(p1,p2)
+#else /* _MSC_VER */
+#include <sys/time.h>
#endif /* _MSC_VER */
#else /* _WIN32 */
#include <sys/time.h>