123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- From d33f16f463e888846d69ddfbeeb963d40972b654 Mon Sep 17 00:00:00 2001
- From: Luiz Angelo Daros de Luca <luizluca@gmail.com>
- Date: Thu, 15 Oct 2015 12:35:00 +0900
- Subject: [PATCH] Add missing <sys/types.h> includes
- [Thomas: backport from upstream commit
- 33495ef9b42a783c8f5f2c056ac5699481d3cc7e, allows to fix the build with
- the musl C library.]
- Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
- ---
- backend/epsonds-io.c | 3 +++
- backend/hp5400.c | 3 +++
- backend/hp5590.c | 3 +++
- backend/kvs20xx_cmd.h | 4 ++++
- backend/kvs40xx.h | 3 +++
- include/sane/sanei_udp.h | 3 +++
- 6 files changed, 19 insertions(+)
- diff --git a/backend/epsonds-io.c b/backend/epsonds-io.c
- index 28bacfc..512997d 100644
- --- a/backend/epsonds-io.c
- +++ b/backend/epsonds-io.c
- @@ -16,6 +16,9 @@
- #include "sane/config.h"
- #include <ctype.h>
- #include <unistd.h> /* sleep */
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
-
- #include "epsonds.h"
- #include "epsonds-io.h"
- diff --git a/backend/hp5400.c b/backend/hp5400.c
- index 61de3db..cfa2dc9 100644
- --- a/backend/hp5400.c
- +++ b/backend/hp5400.c
- @@ -67,6 +67,9 @@
- #include <stdlib.h> /* malloc, free */
- #include <string.h> /* memcpy */
- #include <stdio.h>
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
-
-
- #define HP5400_CONFIG_FILE "hp5400.conf"
- diff --git a/backend/hp5590.c b/backend/hp5590.c
- index 7b1cd60..5422372 100644
- --- a/backend/hp5590.c
- +++ b/backend/hp5590.c
- @@ -48,6 +48,9 @@
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
-
- #include "../include/sane/sane.h"
- #define BACKEND_NAME hp5590
- diff --git a/backend/kvs20xx_cmd.h b/backend/kvs20xx_cmd.h
- index c18b754..4acaf62 100644
- --- a/backend/kvs20xx_cmd.h
- +++ b/backend/kvs20xx_cmd.h
- @@ -9,6 +9,10 @@
- Panasonic KV-S20xx USB-SCSI scanners.
- */
-
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
- +
- #define COMMAND_BLOCK 1
- #define DATA_BLOCK 2
- #define RESPONSE_BLOCK 3
- diff --git a/backend/kvs40xx.h b/backend/kvs40xx.h
- index fa17163..02e0da6 100644
- --- a/backend/kvs40xx.h
- +++ b/backend/kvs40xx.h
- @@ -10,6 +10,9 @@
-
- #include "../include/sane/config.h"
- #include <semaphore.h>
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
-
- #undef BACKEND_NAME
- #define BACKEND_NAME kvs40xx
- diff --git a/include/sane/sanei_udp.h b/include/sane/sanei_udp.h
- index c44afdd..e32fc1a 100644
- --- a/include/sane/sanei_udp.h
- +++ b/include/sane/sanei_udp.h
- @@ -27,6 +27,9 @@
- #include <netinet/in.h>
- #include <netdb.h>
- #endif
- +#ifdef HAVE_SYS_TYPES_H
- +#include <sys/types.h>
- +#endif
-
- extern SANE_Status sanei_udp_open(const char *host, int port, int *fdp);
- extern SANE_Status sanei_udp_open_broadcast(int *fdp);
- --
- 2.7.4
|