[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problem during libtool installation
From: |
Camilo La Rota |
Subject: |
Re: Problem during libtool installation |
Date: |
Tue, 02 Jun 2009 18:38:11 +0200 |
User-agent: |
Thunderbird 2.0.0.14 (X11/20080502) |
Thank you very much. I will try it if I needed.
However, I found the solution for my compilation problem in another news
group:
I post it here for other people that find the same problem:
In the file config.h, the following line appears:
>>/* Define to the system default library search path. */
>> #define LT_DLSEARCH_PATH
>>"/lib:/usr/lib:/usr/kerberos/lib:/usr/X11R6/lib:/usr/lib/qt-3.1/lib:"/usr/local/ssl/lib""
And the solution was given by Török Edwin:
http://www.mail-archive.com/address@hidden/msg32558.html
>Here's the problem, notice the extra " just before /usr/local/ssl/lib.
>Look in config.log, and see if you can find out where that is coming
>from.
>Also check /etc/ld.so.conf and /etc/ld.so.conf.d/*
>Best regards,
>--Edwin
Indeed, I found the extra " in /etc/ld.so.conf, I change them and it works
Sergei Steshenko wrote:
--- On Tue, 6/2/09, Camilo La Rota <address@hidden> wrote:
From: Camilo La Rota <address@hidden>
Subject: Re: Problem during libtool installation
To: address@hidden
Date: Tuesday, June 2, 2009, 7:50 AM
Note: I use old versions of automake and autoconf
because I need to
compile something else with these versions, could it
be the problem ?
[snip]
You can have newer automake and autoconf installed in different
directories; I have a tool which is capable of building a lot of stuff,
including 'libtool', and it builds and installs the stuff in non-system
locations, not requiring root privileges.
You'll need to run just one command line, something like this:
(BUILD_SCRIPT=/home/sergei/AppsFromScratch/20081216/bin/build.pl; export
PKG_CONFIG_PATH=/usr/lib/pkgconfig;$BUILD_SCRIPT -make_like -check_with_ldd -targets_to_build
bash:pkg-config 1>build.prerequisites.log 2>&1; PATH=`pwd`/install/pkg-config-0.23/bin:$PATH;
export PATH; $BUILD_SCRIPT -make_like -check_with_ldd -sh_exec `pwd`/install/bash-4.0/bin/bash
-targets_to_build libtool 1>libtool.log 2>&1) &
, and everything needed for 'libtool' and 'libtool' itself will be built
automatically.
Regards,
Sergei.