mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
w32: Fix build problem with dirmngr.
* dirmngr/ks-engine-hkp.c (EAI_SYSTEM) [W32]: Add replacement constant.
This commit is contained in:
parent
45ed901c46
commit
141d69cb2a
@ -1336,7 +1336,7 @@ strusage( int level )
|
||||
break;
|
||||
case 11: p = "foo"; break;
|
||||
case 13: p = "0.0"; break;
|
||||
case 14: p = "Copyright (C) 2012 Free Software Foundation, Inc."; break;
|
||||
case 14: p = "Copyright (C) 2014 Free Software Foundation, Inc."; break;
|
||||
case 15: p =
|
||||
"This is free software: you are free to change and redistribute it.\n"
|
||||
"There is NO WARRANTY, to the extent permitted by law.\n";
|
||||
|
@ -40,10 +40,17 @@
|
||||
#include "userids.h"
|
||||
#include "ks-engine.h"
|
||||
|
||||
/* Substitute a missing Mingw macro. */
|
||||
/* Substitutes for missing Mingw macro. The EAI_SYSTEM mechanism
|
||||
seems not to be available (probably because there is only one set
|
||||
of error codes anyway). For now we use WSAEINVAL. */
|
||||
#ifndef EAI_OVERFLOW
|
||||
# define EAI_OVERFLOW EAI_FAIL
|
||||
#endif
|
||||
#ifdef HAVE_W32_SYSTEM
|
||||
# ifndef EAI_SYSTEM
|
||||
# define EAI_SYSTEM WSAEINVAL
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* Number of seconds after a host is marked as resurrected. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user