mirror of
https://git.freebsd.org/ports.git
synced 2025-05-06 19:06:44 -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@
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
--- src/Standalone/supervisor.cpp.orig 2021-11-25 00:56:57 UTC
|
|
+++ src/Standalone/supervisor.cpp
|
|
@@ -270,7 +270,7 @@ bool Supervisor::DeviceInfoResolve(SDIDeviceInfo* devI
|
|
}
|
|
bool Supervisor::CheckScanningError(SDIError outError)
|
|
{
|
|
- if(outEventType == 10 ){
|
|
+ if(outEventType == (SDITransferEventType)10 ){
|
|
if(outError != kSDIErrorNone){
|
|
m_LastError = outError;
|
|
return false;
|
|
@@ -2632,7 +2632,7 @@ bool Supervisor::Set_All_Value(void)
|
|
}
|
|
{
|
|
SDIInt current;
|
|
- if(device_data.ScanArea.FixedSize == USER_DEFINE){
|
|
+ if(device_data.ScanArea.FixedSize == (DocumentSize)USER_DEFINE){
|
|
current = device_data.ScanArea.PaperEndDetection.select;
|
|
}else {
|
|
current = false;
|
|
@@ -3712,7 +3712,7 @@ bool Supervisor::Set_Exclusion_Value(void)
|
|
}
|
|
{
|
|
SDIInt current;
|
|
- if(device_data.ScanArea.FixedSize == USER_DEFINE){
|
|
+ if(device_data.ScanArea.FixedSize == (DocumentSize)USER_DEFINE){
|
|
current = device_data.ScanArea.PaperEndDetection.select;
|
|
}else {
|
|
current = false;
|