blob: 6e1036104385d98fab671b32141d3e4f9c5972aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
--- ./include/sane/sanei_udp.h.orig
+++ ./include/sane/sanei_udp.h
@@ -19,6 +19,7 @@
#define sanei_udp_h
#include <sane/sane.h>
+#include <sys/types.h>
#ifdef HAVE_WINSOCK2_H
#include <winsock2.h>
--- ./backend/hp5400_sanei.c.orig
+++ ./backend/hp5400_sanei.c
@@ -57,6 +57,7 @@
#include "hp5400_debug.h"
#include <stdio.h>
#include "../include/sane/sanei_usb.h"
+#include <sys/types.h>
#define CMD_INITBULK1 0x0087 /* send 0x14 */
#define CMD_INITBULK2 0x0083 /* send 0x24 */
--- ./backend/hp5590_low.c.orig
+++ ./backend/hp5590_low.c
@@ -50,6 +50,7 @@
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif /* HAVE_NETINET_IN_H */
+#include <sys/types.h>
#include "byteorder.h"
--- ./backend/kvs20xx_cmd.h.orig
+++ ./backend/kvs20xx_cmd.h
@@ -9,6 +9,8 @@
Panasonic KV-S20xx USB-SCSI scanners.
*/
+#include <sys/types.h>
+
#define COMMAND_BLOCK 1
#define DATA_BLOCK 2
#define RESPONSE_BLOCK 3
--- ./backend/kvs40xx.h.orig
+++ ./backend/kvs40xx.h
@@ -10,6 +10,7 @@
#include "../include/sane/config.h"
#include <semaphore.h>
+#include <sys/types.h>
#undef BACKEND_NAME
#define BACKEND_NAME kvs40xx
|