1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-23 21:50:32 -04:00
ports/net/grive2/files/patch-libgrive_src_util_OS.hh
Carlos J. Puga Medina 626593acd8 net/grive2: Update to 0.5.1-dev
- Use DISTVERSION instead of PORTVERSION for the new version
- Remove CONFLICTS_INSTALL (grive port deleted)
- Fix libgrive/test build after removing doclist api

Noteworthy changes in version 0.5.1-dev

- Added no-remote-new and upload-only modes
- Ignore regexp not persist anymore (note that Grive will still track it to not accidentally delete remote files when changing ignore regexp)
- Added options to limit upload and download speed
- Faster upload of new and changed files. Now Grive uploads files without calculating md5 checksum when file is created locally or when its size changes
2018-04-23 21:32:53 +00:00

13 lines
222 B
C++

--- libgrive/src/util/OS.hh.orig 2018-04-23 17:00:17 UTC
+++ libgrive/src/util/OS.hh
@@ -24,6 +24,10 @@
#include <string>
+#if defined(__FreeBSD__)
+#define off64_t off_t
+#endif
+
namespace gr {
class DateTime ;