From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 50B76138330 for ; Wed, 14 Sep 2016 09:22:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B528E09A9; Wed, 14 Sep 2016 09:22:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A7A1E09A9 for ; Wed, 14 Sep 2016 09:22:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0047340845 for ; Wed, 14 Sep 2016 09:22:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B4A2247C for ; Wed, 14 Sep 2016 09:22:05 +0000 (UTC) From: "Amadeusz Piotr Żołnowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amadeusz Piotr Żołnowski" Message-ID: <1473844907.312df027b207e1456bf8a17328bedde7444cbbf4.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/firejail/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/firejail/files/firejail-0.9.38.2-sysmacros.patch X-VCS-Directories: sys-apps/firejail/files/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: 312df027b207e1456bf8a17328bedde7444cbbf4 X-VCS-Branch: master Date: Wed, 14 Sep 2016 09:22:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9736bb92-cb60-491d-acab-1a65b85d29e7 X-Archives-Hash: 6596e8b28df970c4bcfb7d63419c194c commit: 312df027b207e1456bf8a17328bedde7444cbbf4 Author: Amadeusz Żołnowski gentoo org> AuthorDate: Wed Sep 14 09:21:47 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Wed Sep 14 09:21:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312df027 sys-apps/firejail: Add missing patch for 0.9.38.2 Package-Manager: portage-2.3.0 .../files/firejail-0.9.38.2-sysmacros.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sys-apps/firejail/files/firejail-0.9.38.2-sysmacros.patch b/sys-apps/firejail/files/firejail-0.9.38.2-sysmacros.patch new file mode 100644 index 00000000..85830a4 --- /dev/null +++ b/sys-apps/firejail/files/firejail-0.9.38.2-sysmacros.patch @@ -0,0 +1,27 @@ +From c15fc4754a05cc2b2aec4ca75f87bf3d61578843 Mon Sep 17 00:00:00 2001 +From: Mike Frysinger +Date: Wed, 20 Apr 2016 00:14:21 -0400 +Subject: [PATCH] include sys/sysmacros.h for major/minor/makedev + +These funcs have been defined in sys/sysmacros.h forever, and Linux C +libs are moving away from implicitly including it. Update the files +to include it explicitly. +--- + src/firejail/fs_dev.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/firejail/fs_dev.c b/src/firejail/fs_dev.c +index 97ee9de..2f66980 100644 +--- a/src/firejail/fs_dev.c ++++ b/src/firejail/fs_dev.c +@@ -28,6 +28,7 @@ + #ifndef _BSD_SOURCE + #define _BSD_SOURCE + #endif ++#include + #include + + static void create_char_dev(const char *path, mode_t mode, int major, int minor) { +-- +2.7.4 +