From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] gnu: wxwidgets: enable extended regular expressions. Date: Sat, 16 Apr 2016 20:33:17 +0200 Message-ID: <20160416203317.3f0de8ce@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arV26-0000Y8-LL for guix-devel@gnu.org; Sat, 16 Apr 2016 14:33:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1arV23-0008Cr-FD for guix-devel@gnu.org; Sat, 16 Apr 2016 14:33:26 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:48462) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arV23-0008Cn-9j for guix-devel@gnu.org; Sat, 16 Apr 2016 14:33:23 -0400 Received: from localhost (91.141.2.40.wireless.dyn.drei.com [91.141.2.40]) by dd1012.kasserver.com (Postfix) with ESMTPSA id 6F1CF1CA0622 for ; Sat, 16 Apr 2016 20:33:21 +0200 (CEST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Hi, this patch enables extended regular expression support in wxwidgets. It's needed for kicad. I tried to test the other packages that depend on wxwidgets (wxmaxima and audacity) but even without the patch they are in various states of brokenness. See my bug reports on the problems. These are: audacity: local help files share/audacity/help/ not installed and crash in wxmaxima on Save As. So it's not tested in wxmaxima and little tested in audacity. I think the risks are low anyway and it's likely that it will work. KiCAD works fine with it. * gnu/packages/wxwidgets.scm (wxwidgets): enable extended regular expressions. --- b/gnu/packages/wxwidgets.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index b49fb2f..65adfc1 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -61,7 +61,7 @@ `(("pkg-config" ,pkg-config))) (arguments '(#:configure-flags - '("--with-regex=sys" "--with-libmspack" "--with-sdl") + '("--with-regex" "--with-libmspack" "--with-sdl") #:make-flags (list (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib"))