Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu/files: ncdu-1.11-missing-header.patch
Date: Sun, 28 Jun 2015 22:53:01
Message-Id: 20150628225254.9847773D@oystercatcher.gentoo.org
1 blueness 15/06/28 22:52:54
2
3 Added: ncdu-1.11-missing-header.patch
4 Log:
5 Add missing <sys/wait.h>. Bug #550310.
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
8
9 Revision Changes Path
10 1.1 sys-fs/ncdu/files/ncdu-1.11-missing-header.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ncdu/files/ncdu-1.11-missing-header.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ncdu/files/ncdu-1.11-missing-header.patch?rev=1.1&content-type=text/plain
14
15 Index: ncdu-1.11-missing-header.patch
16 ===================================================================
17 From 29f347c19cb7ad17c4b401e1d984fce8eafaaafa Mon Sep 17 00:00:00 2001
18 From: Yorhel <git@××××××.nl>
19 Date: Tue, 7 Apr 2015 10:39:46 +0200
20 Subject: shell.c: Include sys/wait.h
21
22 Required for the W* macros on OpenBSD. Reported by Brian Callahan.
23
24 diff --git a/src/shell.c b/src/shell.c
25 index d601b5a..eb275cd 100644
26 --- a/src/shell.c
27 +++ b/src/shell.c
28 @@ -32,6 +32,7 @@
29 #include <ncurses.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 +#include <sys/wait.h>
33
34 void shell_draw() {
35 char *full_path;
36 --
37 cgit v0.10.1