From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: Patches for midnight commander Date: Tue, 25 Mar 2014 21:51:46 -0400 Message-ID: <87eh1pk9ql.fsf@yeeloong.lan> References: <87wqfihtoi.fsf@gmail.com> <87ha6l52av.fsf@gnu.org> 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]:50753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSd1C-0004bA-Uf for guix-devel@gnu.org; Tue, 25 Mar 2014 21:52:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSd17-0004YJ-43 for guix-devel@gnu.org; Tue, 25 Mar 2014 21:52:38 -0400 In-Reply-To: <87ha6l52av.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 25 Mar 2014 23:41:28 +0100") 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: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Eric Bavier skribis: > >> --- 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. Did you mean to write 'propagated-inputs' here? Mark