From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fE3Ol-0007Bt-Dh for guix-patches@gnu.org; Wed, 02 May 2018 21:51:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fE3Oi-00043u-6h for guix-patches@gnu.org; Wed, 02 May 2018 21:51:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39645) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fE3Oi-00043W-2H for guix-patches@gnu.org; Wed, 02 May 2018 21:51:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fE3Og-0005Rp-6w for guix-patches@gnu.org; Wed, 02 May 2018 21:51:03 -0400 Subject: [bug#31352] [PATCH] build dynamic libraries for libsigsegv Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40746) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fE3JF-0006QS-I0 for guix-patches@gnu.org; Wed, 02 May 2018 21:45:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fE3JC-0002JA-DA for guix-patches@gnu.org; Wed, 02 May 2018 21:45:25 -0400 Received: from sender-op-o11.zoho.com ([135.84.80.196]:17064) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fE3JC-0002Hi-3V for guix-patches@gnu.org; Wed, 02 May 2018 21:45:22 -0400 Date: Wed, 02 May 2018 09:59:15 -0400 Message-Id: <87in86gnv0.fsf@b.rontosaur.us> From: Weldon Goree MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 31352@debbugs.gnu.org --=-=-= Content-Type: text/plain This is keeping smalltalk from building currently. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-make-sigsegv-dynamic.patch >From d906250e0ac14120a2f8bce52cb5e85f3442b160 Mon Sep 17 00:00:00 2001 From: Weldon Goree Date: Wed, 2 May 2018 09:31:55 -0400 Subject: [PATCH] make sigsegv dynamic --- gnu/packages/libsigsegv.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/libsigsegv.scm b/gnu/packages/libsigsegv.scm index 2a4481982..f0272529f 100644 --- a/gnu/packages/libsigsegv.scm +++ b/gnu/packages/libsigsegv.scm @@ -50,8 +50,9 @@ (lambda _ (substitute* "src/fault-linux-mips-old.h" (("#include ") "")) - #t)))) - '())) + #t))) + #:configure-flags '("--enable-shared")) + `(#:configure-flags '("--enable-shared")))) (description "GNU libsigsegv is a library to handle page faults, which occur when a program tries to access an unavailable region of memory, in user mode. By -- 2.17.0 --=-=-=--