Add new package, open-vm-tools is Open Virtual Machine Tools for VMware guest OS tested: OpenWrt master and 18.06.2 (x86_64) on ESXi 6.5, 6.7 Signed-off-by: Yuhei OKAWA <tochiro.srchack@gmail.com>
16 lines
725 B
Diff
16 lines
725 B
Diff
diff -urN a/lib/file/fileIOPosix.c b/lib/file/fileIOPosix.c
|
|
--- a/lib/file/fileIOPosix.c
|
|
+++ b/lib/file/fileIOPosix.c
|
|
@@ -206,10 +206,10 @@
|
|
* the symbols (and anyone building XOPEN<700 gets nothing).
|
|
*/
|
|
extern ssize_t preadv64(int fd, const struct iovec *iov, int iovcnt,
|
|
- __off64_t offset) __attribute__ ((weak));
|
|
+ off64_t offset) __attribute__ ((weak));
|
|
|
|
extern ssize_t pwritev64(int fd, const struct iovec *iov, int iovcnt,
|
|
- __off64_t offset) __attribute__ ((weak));
|
|
+ off64_t offset) __attribute__ ((weak));
|
|
#else
|
|
#error "Large file support unavailable. Aborting."
|
|
#endif
|