summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-09-12 22:19:26 +0100
committerSam James <sam@gentoo.org>2021-09-12 22:29:10 +0100
commit6f5688b01310bd6ce08e2dde6fe2a9839b7ff832 (patch)
tree5dafe43b9a13f47e1c56f1c8a3f42cd430dbcd2d /sys-apps/pv/files/pv-1.6.19-stddef-include.patch
parentgames-fps/sauerbraten: drop 2013.02.03-r2 (diff)
downloadgentoo-6f5688b01310bd6ce08e2dde6fe2a9839b7ff832.tar.gz
gentoo-6f5688b01310bd6ce08e2dde6fe2a9839b7ff832.tar.bz2
gentoo-6f5688b01310bd6ce08e2dde6fe2a9839b7ff832.zip
sys-apps/pv: add 1.6.20, drop 1.6.19-r1
Just contains the upstreamed build fix patch. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/pv/files/pv-1.6.19-stddef-include.patch')
-rw-r--r--sys-apps/pv/files/pv-1.6.19-stddef-include.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/sys-apps/pv/files/pv-1.6.19-stddef-include.patch b/sys-apps/pv/files/pv-1.6.19-stddef-include.patch
deleted file mode 100644
index b28a1c8d063b..000000000000
--- a/sys-apps/pv/files/pv-1.6.19-stddef-include.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://github.com/a-j-wood/pv/pull/1
-
-From: Sam James <sam@gentoo.org>
-Date: Wed, 8 Sep 2021 01:03:29 +0100
-Subject: [PATCH] src/pv/number.c: add missing <stddef.h> include for NULL
-
---- a/src/pv/number.c
-+++ b/src/pv/number.c
-@@ -2,6 +2,8 @@
- * Functions for converting strings to numbers.
- */
-
-+#include <stddef.h>
-+
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif