From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#34431: Qt fails to build Date: Tue, 12 Feb 2019 16:01:33 +0100 Message-ID: <87sgwtjbjm.fsf@gnu.org> References: <20190211112015.GA9273@jurong> <20190211124431.31f47135@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:41077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtZeE-00030g-5A for bug-guix@gnu.org; Tue, 12 Feb 2019 10:07:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtZZS-0007Pr-TM for bug-guix@gnu.org; Tue, 12 Feb 2019 10:02:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45737) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gtZZS-0007PG-OP for bug-guix@gnu.org; Tue, 12 Feb 2019 10:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gtZZS-0003q3-Fs for bug-guix@gnu.org; Tue, 12 Feb 2019 10:02:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20190211124431.31f47135@scratchpost.org> (Danny Milosavljevic's message of "Mon, 11 Feb 2019 12:44:31 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Danny Milosavljevic Cc: 34431@debbugs.gnu.org Danny Milosavljevic skribis: > Possible fix https://672856.bugs.gentoo.org/attachment.cgi?id=3D557978 > > diff -Naurp a/src/corelib/global/minimum-linux_p.h b/src/corelib/global/m= inimum-linux_p.h > --- a/src/corelib/global/minimum-linux_p.h 2018-11-25 15:51:11.00000= 0000 +0300 > +++ b/src/corelib/global/minimum-linux_p.h 2018-12-17 13:25:38.17682= 3753 +0300 > @@ -75,14 +75,9 @@ QT_BEGIN_NAMESPACE > * - accept4 2.6.28 > * - renameat2 3.16 QT_CONFIG(rename= at2) > * - getrandom 3.17 QT_CONFIG(getent= ropy) > - * - statx 4.11 QT_CONFIG(statx) > */ > > -#if QT_CONFIG(statx) > -# define MINLINUX_MAJOR 4 > -# define MINLINUX_MINOR 11 > -# define MINLINUX_PATCH 0 > -#elif QT_CONFIG(getentropy) > +#if QT_CONFIG(getentropy) > # define MINLINUX_MAJOR 3 > # define MINLINUX_MINOR 17 > # define MINLINUX_PATCH 0 Qt should definitely not require a kernel more recent than what libc requires. If this patch solves that, we should probably apply it (in =E2=80=98staging=E2=80=99 I guess.) Thanks, Ludo=E2=80=99.