From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ej7ST-00011V-4H for guix-patches@gnu.org; Tue, 06 Feb 2018 12:55:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ej7SQ-000830-3P for guix-patches@gnu.org; Tue, 06 Feb 2018 12:55:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52625) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ej7SP-00082k-Va for guix-patches@gnu.org; Tue, 06 Feb 2018 12:55:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ej7SP-00088X-IJ for guix-patches@gnu.org; Tue, 06 Feb 2018 12:55:01 -0500 Subject: [bug#30340] [PATCH 1/6] gnu: qtbase: Use the store paths for other packages and dynamically loaded libs. Resent-Message-ID: Date: Tue, 6 Feb 2018 18:54:43 +0100 From: Danny Milosavljevic Message-ID: <20180206185443.171d146c@scratchpost.org> In-Reply-To: <08c9a446-3587-b1fe-b60e-d068d1861d0d@crazy-compilers.com> References: <20180203192212.29173-1-h.goebel@crazy-compilers.com> <20180203192505.29516-1-h.goebel@crazy-compilers.com> <20180206100057.5fce0725@scratchpost.org> <08c9a446-3587-b1fe-b60e-d068d1861d0d@crazy-compilers.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Hartmut Goebel Cc: 30340@debbugs.gnu.org Hi Hartmut, On Tue, 6 Feb 2018 12:57:32 +0100 Hartmut Goebel wrote: >>>[-lresolv -> glibc] > > Any news on this? > I'm afraid, I don't understand this question. I don't know if "this is > really required", otherwise I would not have put the comment there. Oh, I thought you investigated or asked someone upstream about it. I don't know Qt interna so well - but it would be possible to ask upstream. The part under discussion is static bool resolveLibraryInternal() { QLibrary lib; #ifdef LIBRESOLV_SO lib.setFileName(QStringLiteral(LIBRESOLV_SO)); if (!lib.load()) #endif { lib.setFileName(QLatin1String("resolv")); <----- if (!lib.load()) return false; ... so I guess it can't hurt to substitute something in the line with the arrow, but LIBRESOLV_SO is more important, right?