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@
21 lines
517 B
C++
21 lines
517 B
C++
--- src/CommonUtility/DbgLog.cpp.orig 2021-11-25 00:56:55 UTC
|
|
+++ src/CommonUtility/DbgLog.cpp
|
|
@@ -34,6 +34,9 @@
|
|
#ifdef __ANDROID__
|
|
#include <android/log.h>
|
|
#endif
|
|
+#if __FreeBSD__
|
|
+#include <pthread_np.h>
|
|
+#endif
|
|
#if TARGET_OS_IPHONE
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
#endif
|
|
@@ -87,6 +90,8 @@ GetCurrentThreadId(void)
|
|
{
|
|
#if TARGET_OS_IPHONE
|
|
return (DWORD)pthread_mach_thread_np(pthread_self());
|
|
+#elif __FreeBSD__
|
|
+ return pthread_getthreadid_np();
|
|
#else
|
|
return syscall(SYS_gettid);
|
|
#endif
|