Changes since oldpackages: - cups dependency was completely removed * This also happened in sane trunk version - small musl patch - added detection of inb,outb (link error with musl) * this also removes hack 020-non-i386-qcam.patch - fix for segfault when using sane-test backend - removed link to extra libraries in libsane (used only for preload backends) - added format-security fix - sane-libs and sane-backends merged and exploded into individual packages for each backend: * libsane for sane library (which backends should dep on) * sane-daemon for saned daemon * sane-xxx for sane backend for xxx ** each backend has its own custom dep libraries * sane-backends-all (with no files) that deps on all backends * sane-qcam is only available for x86/x86_64 ** other archs does not implement inb/outb (at least in musl) Now it is possible to use SANE with much less FS space (KB instead of MB). Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
51 lines
1.1 KiB
Diff
51 lines
1.1 KiB
Diff
--- a/include/sane/sanei_udp.h
|
|
+++ b/include/sane/sanei_udp.h
|
|
@@ -27,6 +27,7 @@
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
#endif
|
|
+#include <sys/types.h>
|
|
|
|
extern SANE_Status sanei_udp_open(const char *host, int port, int *fdp);
|
|
extern SANE_Status sanei_udp_open_broadcast(int *fdp);
|
|
--- a/backend/kvs20xx_cmd.h
|
|
+++ b/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
|
|
--- a/backend/kvs40xx.h
|
|
+++ b/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
|
|
--- a/backend/hp5400.c
|
|
+++ b/backend/hp5400.c
|
|
@@ -67,6 +67,7 @@
|
|
#include <stdlib.h> /* malloc, free */
|
|
#include <string.h> /* memcpy */
|
|
#include <stdio.h>
|
|
+#include <sys/types.h>
|
|
|
|
|
|
#define HP5400_CONFIG_FILE "hp5400.conf"
|
|
--- a/backend/hp5590.c
|
|
+++ b/backend/hp5590.c
|
|
@@ -48,6 +48,7 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
+#include <sys/types.h>
|
|
|
|
#include "../include/sane/sane.h"
|
|
#define BACKEND_NAME hp5590
|