diff options
Diffstat (limited to 'src/assuan-pipe-connect.c')
-rw-r--r-- | src/assuan-pipe-connect.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/assuan-pipe-connect.c b/src/assuan-pipe-connect.c index 690d810..0a04777 100644 --- a/src/assuan-pipe-connect.c +++ b/src/assuan-pipe-connect.c @@ -24,7 +24,11 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> -#include <signal.h> +/* On Windows systems signal.h is not needed and even not supported on + WindowsCE. */ +#ifndef HAVE_DOSISH_SYSTEM +# include <signal.h> +#endif #include <unistd.h> #include <errno.h> #include <fcntl.h> |