2010-11-15 Marcus Brinkmann <mb@g10code.com>
authorMarcus Brinkmann <mb@g10code.com>
Mon, 15 Nov 2010 15:30:04 +0000 (15:30 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Mon, 15 Nov 2010 15:30:04 +0000 (15:30 +0000)
* w32-ce.h (strcasecmp, strdup) [_MSC_VER]: Define.
* genkey.c, passphrase.c: Include util.h.

src/ChangeLog
src/genkey.c
src/passphrase.c
src/w32-ce.h

index 19cda90ad5cde5d6aee64198f313d84cf375ea6e..2a547bea69bdffb7a48d5eeb4f4c001d0aaa3dc5 100644 (file)
@@ -1,5 +1,8 @@
 2010-11-15  Marcus Brinkmann  <mb@g10code.com>
 
+       * w32-ce.h (strcasecmp, strdup) [_MSC_VER]: Define.
+       * genkey.c, passphrase.c: Include util.h.
+
        * w32-util.c (_gpgme_w32ce_get_debug_envvar): Fix return value.
 
 2010-11-15  Werner Koch  <wk@g10code.com>
index a85e62785dbcb71ac7ac01a73ced879ed6f8ea66..6de3bb8b99bb1188e10df93344918b1cce2b29c9 100644 (file)
@@ -30,6 +30,7 @@
 #include "debug.h"
 #include "context.h"
 #include "ops.h"
+#include "util.h"
 
 \f
 typedef struct
index 71326845d7995b92733362c00cc9fe7134d75f55..c36b6ae49c66fd35addf39afcdd9d9cb238005bc 100644 (file)
@@ -31,6 +31,7 @@
 #include "gpgme.h"
 #include "context.h"
 #include "ops.h"
+#include "util.h"
 
 \f
 typedef struct
index a74c6e1716015e9db503d819343cd7d1b01ba96d..36f1e9e56bd151cc649b3f21af8ae577fe2d5f31 100644 (file)
@@ -26,6 +26,8 @@
 
 #ifdef _MSC_VER
 typedef int pid_t;
+#define strdup _strdup
+#define strcasecmp _stricmp
 #endif
 
 #include <winsock2.h>