You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
614 B

--- src/keyserver.c.orig Tue Jan 21 23:32:35 2003
+++ src/keyserver.c Sun Feb 2 11:07:54 2003
@@ -24,6 +24,7 @@
#endif
#include <stdio.h>
#ifdef HAVE_NETDB_H
+# include <sys/types.h>
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
--- src/misc.c.dist 2003-07-11 11:19:24.000000000 +0200
+++ src/misc.c 2003-07-11 11:20:48.000000000 +0200
@@ -470,7 +470,7 @@
}
-#ifdef __MINGW32__
+#if defined(__MINGW32__) || defined(NEED_VASPRINTF)
/*
* Like vsprintf but provides a pointer to malloc'd storage, which
* must be freed by the caller (gcry_free). Taken from libiberty as