View | Details | Raw Unified | Return to bug 229653 | Differences between
and this patch

Collapse All | Expand All

(-)graphics/sane-backends/distinfo (-4 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1498740966
1
TIMESTAMP = 1531158989
2
SHA256 (sane-backends-1.0.27.tar.gz) = a4d7ba8d62b2dea702ce76be85699940992daf3f44823ddc128812da33dc6e2c
2
SHA256 (sane-backends-1.0.27.tar.gz) = 293747bf37275c424ebb2c833f8588601a60b2f9653945d5a3194875355e36c9
3
SIZE (sane-backends-1.0.27.tar.gz) = 5955016
3
SIZE (sane-backends-1.0.27.tar.gz) = 6430188
4
--
(-)graphics/sane-backends/files/patch-backend__epsonds.c (+11 lines)
Line 1 Link Here
1
--- backend/epsonds.c.orig	2018-07-09 20:06:33.428965000 +0200
2
+++ backend/epsonds.c	2018-07-09 20:06:49.979599000 +0200
3
@@ -40,6 +40,8 @@
4
 
5
 #include "sane/config.h"
6
 
7
+#include <sys/types.h>
8
+#include <sys/socket.h>
9
 #include <ctype.h>
10
 #include <unistd.h>
11
 
(-)graphics/sane-backends/files/patch-backend__kodakaio.c (-6 / +4 lines)
Lines 1-3 Link Here
1
--- backend/kodakaio.c.orig	2015-09-26 00:53:42 UTC
1
--- backend/kodakaio.c.orig	2017-05-15 03:19:11.000000000 +0200
2
+++ backend/kodakaio.c
2
+++ backend/kodakaio.c	2018-07-09 19:57:19.917363000 +0200
3
@@ -207,6 +207,10 @@ normal levels. This system is a plan rat
3
@@ -208,7 +208,10 @@
4
--
Line 9 Link Here
9
+#include <sys/socket.h>
9
 #include <sys/socket.h>
10
--
(-)graphics/sane-backends/files/patch-backend__kvs40xx.h (-8 / +6 lines)
Lines 1-2 Link Here
1
--- backend/kvs40xx.h.orig	2013-08-25 21:22:58 UTC
1
--- backend/kvs40xx.h.orig	2016-10-06 02:02:57.000000000 +0200
2
+++ backend/kvs40xx.h
2
+++ backend/kvs40xx.h	2018-07-09 20:00:08.924165000 +0200
3
--
Lines 8-11 Link Here
8
 
8
 #ifdef HAVE_SYS_TYPES_H
9
 #undef  BACKEND_NAME
9
 #include <sys/types.h>
10
 #define BACKEND_NAME kvs40xx
10
 #endif
11
@@ -208,7 +209,7 @@ SANE_Status kvs40xx_read_image_data (str
11
@@ -211,7 +212,7 @@
12
--
(-)graphics/sane-backends/files/patch-backend__pieusb_buffer.c (-24 lines)
Lines 1-24 Link Here
1
--- backend/pieusb_buffer.c.orig	2015-09-01 00:31:33 UTC
2
+++ backend/pieusb_buffer.c
3
@@ -100,6 +100,12 @@
4
 #include <stdio.h>
5
 #include <fcntl.h>
6
 #include <sys/mman.h>
7
+
8
+#ifdef HAVE_SYS_ENDIAN_H
9
+#include <sys/endian.h>
10
+#endif
11
+
12
+#ifdef HAVE_ENDIAN_H
13
 #include <endian.h>
14
 
15
 /* When creating the release backend, make complains about unresolved external
16
@@ -110,6 +116,8 @@
17
  #define le16toh(x) __bswap_16 (x)
18
 #endif
19
 
20
+#endif
21
+
22
 static void buffer_update_read_index(struct Pieusb_Read_Buffer* buffer, int increment);
23
 
24
 /* READER */
(-)graphics/sane-backends/files/patch-sanei__sanei_ir.c (-12 lines)
Lines 1-12 Link Here
1
--- sanei/sanei_ir.c.orig	2015-09-29 01:10:43 UTC
2
+++ sanei/sanei_ir.c
3
@@ -29,7 +29,8 @@
4
 
5
 #include <stdlib.h>
6
 #include <string.h>
7
-#include <values.h>
8
+#include <float.h>
9
+#include <limits.h>
10
 #include <math.h>
11
 
12
 #define BACKEND_NAME sanei_ir	/* name of this module for debugging */
(-)graphics/sane-backends/Makefile (-2 / +1 lines)
Line 30 Link Here
30
WRKSRC=		${WRKDIR}/${PORTNAME}-1.0.25
30
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
31
--

Return to bug 229653