From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] wxwidgets: enable extended regexps Date: Mon, 15 Feb 2016 17:04:09 -0500 Message-ID: <20160215220409.GC22965@jasmine> References: <20160215172839.6e00fcd9@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41495) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVRFY-0006Rj-Kj for guix-devel@gnu.org; Mon, 15 Feb 2016 17:04:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVRFW-0005uB-LD for guix-devel@gnu.org; Mon, 15 Feb 2016 17:04:08 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:46834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVRFW-0005tf-IE for guix-devel@gnu.org; Mon, 15 Feb 2016 17:04:06 -0500 Content-Disposition: inline In-Reply-To: <20160215172839.6e00fcd9@scratchpost.org> 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: Danny Milosavljevic Cc: guix-devel@gnu.org On Mon, Feb 15, 2016 at 05:28:39PM +0100, Danny Milosavljevic wrote: > 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? Can you test that some of these other apps still work with this change? > > 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")) >