[svn] gpgme - r1470 - trunk/src
svn author marcus
cvs at cvs.gnupg.org
Wed May 12 18:55:39 CEST 2010
Author: marcus
Date: 2010-05-12 18:55:39 +0200 (Wed, 12 May 2010)
New Revision: 1470
Modified:
trunk/src/ChangeLog
trunk/src/priv-io.h
trunk/src/util.h
Log:
2010-05-12 Marcus Brinkmann <marcus at g10code.de>
* priv-io.h: Include <sys/types.h>
* util.h: Likewise.
Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog 2010-05-11 17:20:45 UTC (rev 1469)
+++ trunk/src/ChangeLog 2010-05-12 16:55:39 UTC (rev 1470)
@@ -1,3 +1,8 @@
+2010-05-12 Marcus Brinkmann <marcus at g10code.de>
+
+ * priv-io.h: Include <sys/types.h>
+ * util.h: Likewise.
+
2010-05-11 Marcus Brinkmann <marcus at g10code.de>
* w32-util.c: Include ath.h
Modified: trunk/src/priv-io.h
===================================================================
--- trunk/src/priv-io.h 2010-05-11 17:20:45 UTC (rev 1469)
+++ trunk/src/priv-io.h 2010-05-12 16:55:39 UTC (rev 1470)
@@ -28,6 +28,10 @@
# include <sys/socket.h>
#endif
+/* For pid_t. */
+#include <sys/types.h>
+
+
/* A single file descriptor passed to spawn. For child fds, dup_to
specifies the fd it should become in the child, but only 0, 1 and 2
are valid values (due to a limitation in the W32 code). As return
Modified: trunk/src/util.h
===================================================================
--- trunk/src/util.h 2010-05-11 17:20:45 UTC (rev 1469)
+++ trunk/src/util.h 2010-05-12 16:55:39 UTC (rev 1470)
@@ -22,6 +22,13 @@
#ifndef UTIL_H
#define UTIL_H
+#ifdef HAVE_W32CE_SYSTEM
+#include "w32-ce.h"
+#endif
+
+/* For pid_t. */
+#include <sys/types.h>
+
#include "gpgme.h"
More information about the Gnupg-commits
mailing list