aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpgme-w32spawn.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2010-11-03 09:56:27 +0000
committerWerner Koch <[email protected]>2010-11-03 09:56:27 +0000
commit21eb91ae3a8578b678d71083f4513de67b2e4e0f (patch)
treef4a1f78ee8611b006c726f829283ac4ec7001f80 /src/gpgme-w32spawn.c
parentMight now build for CE using MSC. (diff)
downloadgpgme-21eb91ae3a8578b678d71083f4513de67b2e4e0f.tar.gz
gpgme-21eb91ae3a8578b678d71083f4513de67b2e4e0f.zip
More include guards.
Provide access for Wince. Install dummy sehmap.h
Diffstat (limited to 'src/gpgme-w32spawn.c')
-rw-r--r--src/gpgme-w32spawn.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gpgme-w32spawn.c b/src/gpgme-w32spawn.c
index 6f7c609a..ccf88a90 100644
--- a/src/gpgme-w32spawn.c
+++ b/src/gpgme-w32spawn.c
@@ -28,8 +28,12 @@
#include <fcntl.h>
#include <ctype.h>
#include <string.h>
-#include <sys/types.h>
-#include <sys/stat.h>
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
#include <stdint.h>
#include <process.h>
#include <windows.h>