aboutsummaryrefslogtreecommitdiffstats
path: root/testing/uwsgi/futimes.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-09-09 12:59:29 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-09-09 13:00:10 +0000
commit055b0b5c6a2dd7029080cb3d2d4e49aaffe6c5f2 (patch)
tree08ca710faaeb8695d10cb42b43d45bde40e767fe /testing/uwsgi/futimes.patch
parent3da4e720e4b7fa886951f4e2f540bab2b4c437af (diff)
downloadaports-055b0b5c6a2dd7029080cb3d2d4e49aaffe6c5f2.tar.bz2
aports-055b0b5c6a2dd7029080cb3d2d4e49aaffe6c5f2.tar.xz
testing/uwsgi: upgrade to 1.9.15 and switch to Lua 5.2
Diffstat (limited to 'testing/uwsgi/futimes.patch')
-rw-r--r--testing/uwsgi/futimes.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/testing/uwsgi/futimes.patch b/testing/uwsgi/futimes.patch
deleted file mode 100644
index 79b525fa06..0000000000
--- a/testing/uwsgi/futimes.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- uwsgi-1.3/core/spooler.c
-+++ uwsgi-1.3.alpine/core/spooler.c
-@@ -223,15 +223,15 @@
- }
-
- if (at > 0) {
-- struct timeval tv[2];
-+ struct timespec tv[2];
- tv[0].tv_sec = at;
-- tv[0].tv_usec = 0;
-+ tv[0].tv_nsec = 0;
- tv[1].tv_sec = at;
-- tv[1].tv_usec = 0;
-+ tv[1].tv_nsec = 0;
- #ifdef __sun__
- if (futimesat(fd, NULL, tv)) {
- #else
-- if (futimes(fd, tv)) {
-+ if (futimens(fd, tv)) {
- #endif
- uwsgi_error("futimes()");
- }