mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-21 19:48:05 +01:00
* util.h: s/__MINGW32__/_WIN32/ to help building on native Windows
compilers. Requested by Brian Gladman. From Werner on stable branch.
This commit is contained in:
parent
cd06705184
commit
1814e2dbf3
@ -1,3 +1,9 @@
|
|||||||
|
2003-08-28 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* util.h: s/__MINGW32__/_WIN32/ to help building on native Windows
|
||||||
|
compilers. Requested by Brian Gladman. From Werner on stable
|
||||||
|
branch.
|
||||||
|
|
||||||
2003-07-10 David Shaw <dshaw@jabberwocky.com>
|
2003-07-10 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* types.h: Prefer using uint64_t when creating a 64-bit unsigned
|
* types.h: Prefer using uint64_t when creating a 64-bit unsigned
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#ifndef G10_UTIL_H
|
#ifndef G10_UTIL_H
|
||||||
#define G10_UTIL_H
|
#define G10_UTIL_H
|
||||||
|
|
||||||
#if defined (__MINGW32__) || defined (__CYGWIN32__)
|
#if defined (_WIN32) || defined (__CYGWIN32__)
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -233,7 +233,7 @@ int strncasecmp (const char *, const char *b, size_t n);
|
|||||||
#define memmove(d, s, n) bcopy((s), (d), (n))
|
#define memmove(d, s, n) bcopy((s), (d), (n))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (__MINGW32__)
|
#if defined (_WIN32)
|
||||||
/*-- w32reg.c --*/
|
/*-- w32reg.c --*/
|
||||||
char *read_w32_registry_string( const char *root,
|
char *read_w32_registry_string( const char *root,
|
||||||
const char *dir, const char *name );
|
const char *dir, const char *name );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user