aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog2
-rw-r--r--contrib/conf-w32ce-msc/config.h4
2 files changed, 6 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 3a876a6..2d2c7b6 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -6,6 +6,8 @@
2010-11-15 Werner Koch <[email protected]>
+ * conf-w32ce-msc/config.h (strdup, strcasecmp): Add macros.
+
* conf-w32ce-msc/build.mk (copy-static-source): Create stdint.h.
(all): Add ws2.lib
(clean): New.
diff --git a/contrib/conf-w32ce-msc/config.h b/contrib/conf-w32ce-msc/config.h
index e9b1f3e..c247377 100644
--- a/contrib/conf-w32ce-msc/config.h
+++ b/contrib/conf-w32ce-msc/config.h
@@ -179,6 +179,10 @@
/* snprintf is not part of oldnames.lib thus we redefine it here. */
#define snprintf _snprintf
+/* We also need to define these functions. */
+#define strdup _strdup
+#define strcasecmp _stricmp
+
#endif /*_ASSUAN_CONFIG_H_INCLUDED*/