mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
* photoid.c: Use __MINGW32__ to include windows because
HAVE_DOSISH_SYSTEM is also set for OS/2 and plain DOS. Provide constant missing in older mingw installations.
This commit is contained in:
parent
a7489d670a
commit
ac49eadf31
@ -1,3 +1,9 @@
|
||||
2002-06-30 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* photoid.c: Use __MINGW32__ to include windows because
|
||||
HAVE_DOSISH_SYSTEM is also set for OS/2 and plain DOS. Provide
|
||||
constant missing in older mingw installations.
|
||||
|
||||
2002-06-21 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* g10.c [__riscos__]: Moved RISC OS specific stuff to util/riscos.c
|
||||
|
@ -22,8 +22,11 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
#include <windows.h>
|
||||
#ifdef __MINGW32__
|
||||
# include <windows.h>
|
||||
# ifndef VER_PLATFORM_WIN32_WINDOWS
|
||||
# define VER_PLATFORM_WIN32_WINDOWS 1
|
||||
# endif
|
||||
#endif
|
||||
#include "packet.h"
|
||||
#include "status.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user