void-packages/srcpkgs/gpm/patches/musl-select.patch
Đoàn Trần Công Danh 7fc9190f0e srcpkgs/g*: convert patches to -Np1
* gcc is kept at -Np0, because of void-cross

```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

36 lines
1.5 KiB
Diff

The FD_ISSET macro and fd_set are defined in sys/select.h
--- a/src/prog/display-buttons.c 2012-10-26 23:21:38.000000000 +0200
+++ b/src/prog/display-buttons.c 2015-06-22 15:40:19.594034730 +0200
@@ -36,7 +36,8 @@
#include <stdio.h> /* printf() */
#include <time.h> /* time() */
#include <errno.h> /* errno */
-#include <gpm.h> /* gpm information */
+#include <sys/select.h> /* FD_ISSET */
+#include "headers/gpm.h" /* gpm information */
/* display resulting data */
int display_data(Gpm_Event *event, void *data)
--- a/src/prog/display-coords.c 2012-10-26 23:21:38.000000000 +0200
+++ b/src/prog/display-coords.c 2015-06-22 15:41:05.433032252 +0200
@@ -37,7 +37,8 @@
#include <stdio.h> /* printf() */
#include <time.h> /* time() */
#include <errno.h> /* errno */
-#include <gpm.h> /* gpm information */
+#include <sys/select.h> /* FD_ISSET */
+#include "headers/gpm.h" /* gpm information */
/* display resulting data */
int display_data(Gpm_Event *event, void *data)
--- a/src/prog/open_console.c 2012-10-26 23:21:38.000000000 +0200
+++ b/src/prog/open_console.c 2015-06-22 15:40:35.002033897 +0200
@@ -22,6 +22,7 @@
#include "headers/message.h" /* messaging in gpm */
#include "headers/daemon.h" /* daemon internals */
#include <fcntl.h>
+#include <sys/select.h>
int open_console(const int mode)
{