From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Jakub Jankiewicz" Newsgroups: gmane.lisp.guile.user Subject: How to install guile using local libraries Date: Sun, 26 Jun 2016 15:39:58 +0200 Message-ID: <20160626153958.208b2b7f@jcubic> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1466951837 5766 80.91.229.3 (26 Jun 2016 14:37:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 26 Jun 2016 14:37:17 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Jun 26 16:37:06 2016 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bHBBI-00057P-RM for guile-user@m.gmane.org; Sun, 26 Jun 2016 16:37:04 +0200 Original-Received: from localhost ([::1]:54190 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHBBG-0003Mo-EB for guile-user@m.gmane.org; Sun, 26 Jun 2016 10:37:02 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHAMt-00081G-WA for guile-user@gnu.org; Sun, 26 Jun 2016 09:45:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHAMn-0003zV-Vy for guile-user@gnu.org; Sun, 26 Jun 2016 09:44:58 -0400 Original-Received: from smtpo78.poczta.onet.pl ([141.105.16.28]:58464) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHAMn-0003zI-P1 for guile-user@gnu.org; Sun, 26 Jun 2016 09:44:53 -0400 Original-Received: from jcubic (unknown [91.239.249.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: jcubic@onet.pl) by smtp.poczta.onet.pl (Onet) with ESMTPSA id 3rctV95k4tz5Jq5 for ; Sun, 26 Jun 2016 15:39:58 +0200 (CEST) X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; i686-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 141.105.16.28 X-Mailman-Approved-At: Sun, 26 Jun 2016 10:36:32 -0400 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.lisp.guile.user:12704 Archived-At: Hi, I want to install guile locally to /home/me/lib, but when I've run: ./configure I got error: configure: error: GNU MP 4.1 or greater not found, see README so I've installed GNU MP locally using: ./configure --prefix=/home/me/ make make install and it created this files in /home/me/lib/ (it also created directory /home/me/include with header file): libgmp.a libgmp.la libgmp.so libgmp.so.10 libgmp.so.10.3.1 I've found in configure script for guile that there is option: --with-libgmp-prefix=DIR so I run: ./configure --with-libgmp-prefix=/home/me but got the same error (that can't find GNU MP), How can I inform guile's configure script where is GMP? thanks in advance Jakub