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: Wed, 26 Mar 2014 14:46:27 +0100 Message-ID: <87txal2hu4.fsf@gnu.org> References: <87wqfihtoi.fsf@gmail.com> <87ha6l52av.fsf@gnu.org> <87eh1pk9ql.fsf@yeeloong.lan> 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]:46981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSoA9-0000Lg-Gq for guix-devel@gnu.org; Wed, 26 Mar 2014 09:46:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSoA2-0004Rl-DP for guix-devel@gnu.org; Wed, 26 Mar 2014 09:46:37 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:48484) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSoA2-0004RZ-6l for guix-devel@gnu.org; Wed, 26 Mar 2014 09:46:30 -0400 In-Reply-To: <87eh1pk9ql.fsf@yeeloong.lan> (Mark H. Weaver's message of "Tue, 25 Mar 2014 21:51:46 -0400") 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: Mark H Weaver Cc: guix-devel@gnu.org Mark H Weaver skribis: > 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 t= o also >>> + ;; know where to find libgrypt and zlib libraries. LDFLAGS ar= e 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? Yes! Sorry. Ludo=E2=80=99.