From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Wingo Subject: Re: [PATCH 08/10] gnu: readline: support mingw. Date: Mon, 02 May 2016 10:12:33 +0200 Message-ID: <87mvo8naj2.fsf@igalia.com> References: <1461942751-23883-1-git-send-email-janneke@gnu.org> <1461942751-23883-8-git-send-email-janneke@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ax8yU-00079v-CN for guix-devel@gnu.org; Mon, 02 May 2016 04:13:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ax8yI-0003NB-QA for guix-devel@gnu.org; Mon, 02 May 2016 04:12:56 -0400 In-Reply-To: <1461942751-23883-8-git-send-email-janneke@gnu.org> (Jan Nieuwenhuizen's message of "Fri, 29 Apr 2016 17:12:29 +0200") 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: Jan Nieuwenhuizen Cc: guix-devel@gnu.org On Fri 29 Apr 2016 17:12, Jan Nieuwenhuizen writes: > * gnu/packages/patches/readline-6.3-mingw.patch: New file. > * gnu-system.am (dist_patch_DATA): Add it. > * gnu/packages/readline.scm (readline): Support mingw. Can you clarify the licensing on the patch, and note its original author? Ideally we should send the patch upstream, too. > (arguments `(#:configure-flags > (list (string-append "LDFLAGS=-Wl,-rpath -Wl," > (assoc-ref %build-inputs "ncurses") > - "/lib") > + ,(if (mingw-target?) "/bin" "/lib")) Is there a reason for MinGW ncurses to put its library in /bin on a MinGW system? Better if it put it in /lib like everything else... Andy