From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: bug#34431: Qt fails to build Date: Tue, 12 Feb 2019 17:59:24 +0100 Message-ID: <8736otj637.fsf@elephly.net> References: <20190211112015.GA9273@jurong> <20190211124431.31f47135@scratchpost.org> <87sgwtjbjm.fsf@gnu.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]:43390) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gtbPj-0002s7-3f for bug-guix@gnu.org; Tue, 12 Feb 2019 12:00:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gtbPf-0006Wq-Ig for bug-guix@gnu.org; Tue, 12 Feb 2019 12:00:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45819) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gtbPf-0006WJ-AA for bug-guix@gnu.org; Tue, 12 Feb 2019 12:00:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gtbPf-0006tF-0O for bug-guix@gnu.org; Tue, 12 Feb 2019 12:00:03 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <87sgwtjbjm.fsf@gnu.org> 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 34431@debbugs.gnu.org Ludovic Court=C3=A8s writes: > 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/= minimum-linux_p.h >> --- a/src/corelib/global/minimum-linux_p.h 2018-11-25 15:51:11.0000= 00000 +0300 >> +++ b/src/corelib/global/minimum-linux_p.h 2018-12-17 13:25:38.1768= 23753 +0300 >> @@ -75,14 +75,9 @@ QT_BEGIN_NAMESPACE >> * - accept4 2.6.28 >> * - renameat2 3.16 QT_CONFIG(renam= eat2) >> * - getrandom 3.17 QT_CONFIG(geten= tropy) >> - * - 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.) Oh dear, this would certainly cause problems on RHEL 6 and 7. Thanks for trying to fix it! --=20 Ricardo