mirror of
https://github.com/openwrt/packages.git
synced 2025-02-23 10:06:16 +00:00
Some change in base broke compilation with libusb and this package. From looking at it more carefully, it turns out that the libusb patch needs to be updated so that host paths are not used. libusb-compat also depends on libusb, which increases the overall installed size. Refreshed patches with make package/hplip/refresh . Signed-off-by: Rosen Penev <rosenp@gmail.com>
16 lines
479 B
Diff
16 lines
479 B
Diff
--- a/scan/sane/OrbliteScan/LinuxCommon.h
|
|
+++ b/scan/sane/OrbliteScan/LinuxCommon.h
|
|
@@ -18,10 +18,8 @@ typedef u_int32_t UInt32;
|
|
typedef int32_t SInt32;
|
|
//typedef unsigned long UInt32;
|
|
//typedef signed long SInt32;
|
|
-typedef __S64_TYPE SInt64;
|
|
-typedef __U64_TYPE UInt64;
|
|
-typedef __S64_TYPE int64_t;
|
|
-typedef __U64_TYPE uint64_t;
|
|
+typedef int64_t SInt64;
|
|
+typedef uint64_t UInt64;
|
|
|
|
//typedef unsigned long ULONG;
|
|
//typedef void* LPVOID;
|