On Tue, Jul 06, 2010 at 12:09:51PM +0200, Onno van der Straaten wrote:
> I'm trying to build the 1.7 client from the trunk using the INSTALL
> file. I think I passed all steps, I did not see any errors/problems.
> Svn version shows the 1.7 version. This seems to work find except for
> that last message _mcleanup: gmon.out: Permission denied. Can I ignore
> that message?
>
> A bigger problem is that not all of the RA modules are available,
> especially the module for the http/https scheme is missing, which is
> the one I want to use for my test. I think I have all the required
> bits installed so this is probably just a configuration problem? In
> the INSTALL file there is some relevant info
>
> I'm not sure about $LD_LIBRARY_PATH.
>
> I tried /usr/local/apr/lib
> export LD_LIBRARY_PATH=/usr/local/apr/lib
> and
> sudo ldconfig
That updates the run-time linker cache with references to /usr/local/apr/lib.
You may not want libraries from /usr/local/apr/lib in your system-wide linker
cache, because the could interfere with other programs linked to APR from
system packages. If you start getting random segfaults in applications
using APR, this might be what caused it.
> But that doesn't fix the problem. What am I doing wrong?
You need to pass --with-apxs="/usr/bin/apxs" to configure.
Check the file config.log for errors related to apxs if this doesn't
help. Quite possibly you need httpd development support files installed,
which may be packaged separately from the actual web server depending
on your variant of UNIX.
Stefan
Received on 2010-07-06 12:21:57 CEST