diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-09-04 00:12:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-09-04 00:12:44 +0000 |
commit | 65dd4d959808eb56ff72ad98bb19a60c225cfcea (patch) | |
tree | 965ace815179d7e2278c5d703c3f387a9f18789a /sys-apps/util-linux/files | |
parent | Fix SRC_URI and remove bogus RESTRICT. (diff) | |
download | gentoo-2-65dd4d959808eb56ff72ad98bb19a60c225cfcea.tar.gz gentoo-2-65dd4d959808eb56ff72ad98bb19a60c225cfcea.tar.bz2 gentoo-2-65dd4d959808eb56ff72ad98bb19a60c225cfcea.zip |
Stub out ioprio syscalls on dated systems #190613 by Panagiotis Christopoulos.
(Portage version: 2.1.3.7)
Diffstat (limited to 'sys-apps/util-linux/files')
-rw-r--r-- | sys-apps/util-linux/files/util-linux-2.13-ioprio-syscalls.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys-apps/util-linux/files/util-linux-2.13-ioprio-syscalls.patch b/sys-apps/util-linux/files/util-linux-2.13-ioprio-syscalls.patch new file mode 100644 index 000000000000..f558ff6d1a8f --- /dev/null +++ b/sys-apps/util-linux/files/util-linux-2.13-ioprio-syscalls.patch @@ -0,0 +1,16 @@ +Just stub this cruft for crappy arches + +http://bugs.gentoo.org/190613 + +--- schedutils/ionice.c ++++ schedutils/ionice.c +@@ -39,7 +39,8 @@ + # define __NR_ioprio_set 196 + # define __NR_ioprio_get 218 + # else +-# error "Unsupported arch" ++# define __NR_ioprio_set -1 ++# define __NR_ioprio_get -1 + # endif + + # define SYS_ioprio_get __NR_ioprio_get |