From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Germ=E1n?= Arias Newsgroups: gmane.lisp.guile.user Subject: Re: Problem to compile g-wrap Date: Tue, 04 Oct 2011 18:00:14 -0600 Message-ID: <1317772814.9047.4.camel@german-desktop> References: <1317513190.5620.4.camel@german-desktop> <1317682734.5618.3.camel@german-desktop> <87y5x05yf3.fsf@gnu.org> Reply-To: guile-user@gnu.org NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1317772834 6450 80.91.229.12 (5 Oct 2011 00:00:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 5 Oct 2011 00:00:34 +0000 (UTC) Cc: guile-user@gnu.org To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Oct 05 02:00:30 2011 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RBEuR-0002LF-Gv for guile-user@m.gmane.org; Wed, 05 Oct 2011 02:00:27 +0200 Original-Received: from localhost ([::1]:53734 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBEuQ-0005uO-L5 for guile-user@m.gmane.org; Tue, 04 Oct 2011 20:00:26 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:49183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBEuM-0005uG-8S for guile-user@gnu.org; Tue, 04 Oct 2011 20:00:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RBEuL-0005qK-9n for guile-user@gnu.org; Tue, 04 Oct 2011 20:00:22 -0400 Original-Received: from mail-yw0-f41.google.com ([209.85.213.41]:51316) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBEuJ-0005nq-Nk; Tue, 04 Oct 2011 20:00:19 -0400 Original-Received: by ywe9 with SMTP id 9so1230554ywe.0 for ; Tue, 04 Oct 2011 17:00:18 -0700 (PDT) Original-Received: by 10.236.78.233 with SMTP id g69mr4074581yhe.62.1317772818511; Tue, 04 Oct 2011 17:00:18 -0700 (PDT) Original-Received: from [192.168.1.5] ([190.56.126.46]) by mx.google.com with ESMTPS id z15sm21794886yhg.21.2011.10.04.17.00.16 (version=SSLv3 cipher=OTHER); Tue, 04 Oct 2011 17:00:17 -0700 (PDT) In-Reply-To: <87y5x05yf3.fsf@gnu.org> X-Mailer: Evolution 2.22.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.213.41 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:8847 Archived-At: On mar, 2011-10-04 at 21:50 +0200, Ludovic Courtès wrote: > Hi, > > Germán Arias skribis: > > > checking size of size_t... 4 > > checking size of ssize_t... 4 > > checking for guile... /usr/local/bin/guile > > checking for guile-config... /usr/local/bin/guile-config > > checking for guile-tools... /usr/local/bin/guile-tools > > checking libguile compile flags... -pthread > > -I/usr/local/include/guile/2.0 -I/usr/local/include > > checking libguile link flags... -L/usr/local/lib -lguile-2.0 -lgc > > checking for guile-2.0... no > > > > > > Why? the Guile libraries are just there. > > Presumably it’s running ‘pkg-config guile-2.0’, which fails. Can you > check whether guile-2.0.pc is in $PKG_CONFIG_PATH? > > HTH, > Ludo’. > PKG_CONFIG_PATH is empty. So I do: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig guile-2.0.pc is at /usr/local/lib/pkgconfig. But I get the same output. Which should be the output of 'pkg-config guile-2.0'? If I run this, I get: german@german-desktop:~/Instalados/g-wrap-1.9.13$ pkg-config guile-2.0 german@german-desktop:~/Instalados/g-wrap-1.9.13$ Thanks.