summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2018-11-28 09:58:38 +0100
committerLars Wendler <polynomial-c@gentoo.org>2018-11-28 10:06:39 +0100
commit4caa95d19d760c355d72673af9d1c85f2a2a1e72 (patch)
tree3f9dc802317f21889f81a84dd92a3bb8af7bafc7 /app-emulation/virtualbox-guest-additions/files
parentxfce-extra/thunar-volman: Bump to 0.9.1 (maintenance release) (diff)
downloadgentoo-4caa95d19d760c355d72673af9d1c85f2a2a1e72.tar.gz
gentoo-4caa95d19d760c355d72673af9d1c85f2a2a1e72.tar.bz2
gentoo-4caa95d19d760c355d72673af9d1c85f2a2a1e72.zip
virtualbox packages: Removed old.
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-emulation/virtualbox-guest-additions/files')
-rw-r--r--app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5.2.18-linux-4.18.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5.2.18-linux-4.18.patch b/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5.2.18-linux-4.18.patch
deleted file mode 100644
index ed314943a7c3..000000000000
--- a/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5.2.18-linux-4.18.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Author: Larry Finger
-Origin: https://www.mail-archive.com/vbox-dev@virtualbox.org/msg09363.html
-
---- a/src/VBox/Additions/linux/sharedfolders/utils.c
-+++ b/src/VBox/Additions/linux/sharedfolders/utils.c
-@@ -50,7 +50,11 @@ static void sf_timespec_from_ftime(RTTIMESPEC *ts, time_t *time)
- RTTimeSpecSetNano(ts, t);
- }
- #else /* >= 2.6.0 */
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0)
-+static void sf_ftime_from_timespec(struct timespec64 *tv, RTTIMESPEC *ts)
-+#else
- static void sf_ftime_from_timespec(struct timespec *tv, RTTIMESPEC *ts)
-+#endif
- {
- int64_t t = RTTimeSpecGetNano(ts);
- int64_t nsec;
-@@ -60,7 +64,11 @@ static void sf_ftime_from_timespec(struct timespec *tv, RTTIMESPEC *ts)
- tv->tv_nsec = nsec;
- }
-
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0)
-+static void sf_timespec_from_ftime(RTTIMESPEC *ts, struct timespec64 *tv)
-+#else
- static void sf_timespec_from_ftime(RTTIMESPEC *ts, struct timespec *tv)
-+#endif
- {
- int64_t t = (int64_t)tv->tv_nsec + (int64_t)tv->tv_sec * 1000000000;
- RTTimeSpecSetNano(ts, t);