mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -04:00
This is a port of the Seiko/Epson Epsonscan2 scanner engine and GUI[1]. It provides a complete alternative to sane/xsane with its own scanner engine and GUI. It also provides a sane back-end library (libsane-epsonscan2.so) so that it works with the sane package. There are two parts to this port: - graphics/epsonscan2 - the main scanner engine and GUI that works with (most) USB scanners - graphics/epsonscan2-non-free-plugin - support for Epson's Linux binary that adds network access to scanners and usb access to some particular scanners Please read the file %%PREFIX%%/lib/epsonscan2/Read_me.FreeBSD for notes on how to set this up and use it. [1] https://download.ebz.epson.net/man/linux/epsonscan2_e.html PR: 261891 Reviewed by: (partly) Tatsuki Makino <tatsuki_makino@hotmail.com>, diizzy@
33 lines
805 B
C
33 lines
805 B
C
--- src/SaneWrapper/defines.h.orig 2021-11-25 00:56:59 UTC
|
|
+++ src/SaneWrapper/defines.h
|
|
@@ -36,14 +36,30 @@ typedef enum {
|
|
} bool;
|
|
#endif
|
|
#include <stdlib.h>
|
|
+#undef _assert
|
|
#define _assert(type,condition) \
|
|
if (!(condition)) \
|
|
{ \
|
|
exit (EXIT_FAILURE); \
|
|
}
|
|
+#ifndef __FreeBSD__
|
|
#define require(condition) _assert ("require", condition)
|
|
#define promise(condition) _assert ("promise", condition)
|
|
+#else
|
|
+#define require(condition) \
|
|
+ if (!(condition)) \
|
|
+ { \
|
|
+ exit (EXIT_FAILURE); \
|
|
+ }
|
|
+#define promise(condition) \
|
|
+ if (!(condition)) \
|
|
+ { \
|
|
+ exit (EXIT_FAILURE); \
|
|
+ }
|
|
+#endif
|
|
+#ifndef __FreeBSD__
|
|
#include <alloca.h>
|
|
+#endif
|
|
#include <stdlib.h>
|
|
#define t_alloca(sz,t) ((t *) alloca ((sz) * sizeof (t)))
|
|
#define t_calloc(sz,t) ((t *) calloc ((sz) , sizeof (t)))
|