From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] wxwidgets: enable extended regexps Date: Mon, 15 Feb 2016 17:28:39 +0100 Message-ID: <20160215172839.6e00fcd9@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]:40645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVM11-0005CQ-7b for guix-devel@gnu.org; Mon, 15 Feb 2016 11:28:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVM0y-0002WU-1q for guix-devel@gnu.org; Mon, 15 Feb 2016 11:28:47 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:43335) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVM0x-0002WO-RY for guix-devel@gnu.org; Mon, 15 Feb 2016 11:28:43 -0500 Received: from localhost (91.141.0.195.wireless.dyn.drei.com [91.141.0.195]) by dd1012.kasserver.com (Postfix) with ESMTPSA id 8FC801CA03AC for ; Mon, 15 Feb 2016 17:28:41 +0100 (CET) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Hi, the following patch enables "extended" regexps as required by kicad. It could conceivably inadvertedly change behaviour of other wxwidgets apps. What do you think? Is this the right way? 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"))