Changes since oldpackages: - updated to 1.0.25 * most of openwrt patches are upstreamed now - cups dependency was completely removed - small musl patch - small uclibc patch - removed link to extra libraries in libsane (used only for preload backends) - 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>
61 lines
1.4 KiB
Diff
61 lines
1.4 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
|
|
--- a/backend/epsonds-io.c
|
|
+++ b/backend/epsonds-io.c
|
|
@@ -16,6 +16,7 @@
|
|
#include "sane/config.h"
|
|
#include <ctype.h>
|
|
#include <unistd.h> /* sleep */
|
|
+#include <sys/types.h>
|
|
|
|
#include "epsonds.h"
|
|
#include "epsonds-io.h"
|