aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/xf86-video-virtualbox/futimens.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:43:52 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:45:47 +0000
commit315ddd26b78d81b1c2f0c1d2a85da338b00fdb25 (patch)
tree47205a7adb60694996874da8c3fc720dcd920501 /unmaintained/xf86-video-virtualbox/futimens.patch
parentaacae4a7b4456b75cbc938f7656cc7118b1e8646 (diff)
downloadaports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.bz2
aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.xz
unmaintained/: Purge packages unmaintained since v3.0
Removes packages that have been in aports/unmaintained since the 3.0-stable branch. Alpine Linux v3.0 was released on 2014-06-04 and EOL on 2016-05-01, so these packages have not been touched since at least 23 months. The files can still be recovered from the 3.3-stable branch.
Diffstat (limited to 'unmaintained/xf86-video-virtualbox/futimens.patch')
-rw-r--r--unmaintained/xf86-video-virtualbox/futimens.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/unmaintained/xf86-video-virtualbox/futimens.patch b/unmaintained/xf86-video-virtualbox/futimens.patch
deleted file mode 100644
index f85e1ae6e2..0000000000
--- a/unmaintained/xf86-video-virtualbox/futimens.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- ./src/VBox/Runtime/r3/posix/fileio2-posix.cpp.orig
-+++ ./src/VBox/Runtime/r3/posix/fileio2-posix.cpp
-@@ -165,7 +165,12 @@
-
- /* XXX this falls back to utimes("/proc/self/fd/...",...) for older kernels/glibcs and this
- * will not work for hardened builds where this directory is owned by root.root and mode 0500 */
-- if (futimes(RTFileToNative(hFile), aTimevals))
-+ struct timespec aTimespecs[2] = {
-+ { aTimevals[0].tv_sec, aTimevals[0].tv_usec * 1000 },
-+ { aTimevals[1].tv_sec, aTimevals[1].tv_usec * 1000 },
-+ };
-+
-+ if (futimens(RTFileToNative(hFile), aTimespecs))
- {
- int rc = RTErrConvertFromErrno(errno);
- Log(("RTFileSetTimes(%RTfile,%p,%p,,): returns %Rrc\n", hFile, pAccessTime, pModificationTime, rc));