mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
- 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
13 lines
222 B
C++
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 ;
|