From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Patches for midnight commander Date: Tue, 25 Mar 2014 23:41:28 +0100 Message-ID: <87ha6l52av.fsf@gnu.org> References: <87wqfihtoi.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45568) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSa2J-0007aj-Pu for guix-devel@gnu.org; Tue, 25 Mar 2014 18:41:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSa2F-0000EZ-EM for guix-devel@gnu.org; Tue, 25 Mar 2014 18:41:35 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:47856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSa2F-0000EQ-78 for guix-devel@gnu.org; Tue, 25 Mar 2014 18:41:31 -0400 In-Reply-To: <87wqfihtoi.fsf@gmail.com> (Eric Bavier's message of "Tue, 25 Mar 2014 16:09:17 -0500") 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: Eric Bavier Cc: guix-devel@gnu.org Eric Bavier skribis: > The two patches below are for midnight commander.=20=20 > > The source needs to be fetched from ftp.midnight-commander.org because > the tarballs on the GNU mirrors have not been updated for a few years... Heh, OK. > --- a/gnu/packages/ssh.scm > +++ b/gnu/packages/ssh.scm > @@ -110,6 +110,18 @@ remote applications.") > (build-system gnu-build-system) > (inputs `(("libgcrypt" ,libgcrypt) > ("zlib" ,zlib))) > + (arguments > + '(#:configure-flags > + `("--with-libgcrypt" > + ;; Programs that use libssh2.pc to link against libssh2 need to = also > + ;; know where to find libgrypt and zlib libraries. LDFLAGS are = put > + ;; into the LIBS field of libssh2.pc > + ,(string-append > + "LDFLAGS=3D-L" > + (assoc-ref %build-inputs "libgcrypt") > + "/lib -L" > + (assoc-ref %build-inputs "zlib") > + "/lib")))) Another way to address that would be to rename =E2=80=98inputs=E2=80=99 to =E2=80=98native-inputs=E2=80=99. This is more concise and quite common, so= I=E2=80=99d prefer that. Could you make this change, and keep the comment? OK to push after that. > From b16a10d914a52ea685a6ff0326f4b4e35c7d2df4 Mon Sep 17 00:00:00 2001 > From: Eric Bavier > Date: Tue, 25 Mar 2014 15:57:28 -0500 > Subject: [PATCH 2/2] gnu: Add mc > > * gnu/packages/mc.scm: New file > * gnu/packages/patches/mc-fix-ncurses-build.patch: New patch > * gnu-system.am (GNU_SYSTEM_MODULES): Add mc.scm. > (dist_patch_DATA): Add patch OK to push! Thanks, Ludo=E2=80=99.