[EMAIL PROTECTED] WARNING: APR not found error (but I compiled with '--with-apr')

2006-12-21 Thread thomas Armstrong

Hi.

I compiled from sources Apache 2.0.59 with APR 0.9.13
./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all
--with-apr=/usr/local/apr-httpd/bin/apr-config
--with-apr-util=/usr/local/apr-util-httpd/bin/apu-config

It works ok aparently, but I'm now trying to compile subversion 1.4.2:
[]# ./configure --with-apxs=/usr/local/httpd/bin/apxs

And I get this error message:
---
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'
---

What am I doing wrong? Thank you very much.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] WARNING: APR not found error (but I compiled with '--with-apr')

2006-12-21 Thread Sander Temme


On Dec 21, 2006, at 4:57 AM, thomas Armstrong wrote:


I compiled from sources Apache 2.0.59 with APR 0.9.13
./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all
--with-apr=/usr/local/apr-httpd/bin/apr-config
--with-apr-util=/usr/local/apr-util-httpd/bin/apu-config

It works ok aparently, but I'm now trying to compile subversion 1.4.2:
[]# ./configure --with-apxs=/usr/local/httpd/bin/apxs


You need to also pass --with-apr and --with-apr-util to Subversion,  
and point them to your APR installation.  There's more to Subversion  
than the Apache module.  The module will get built with the help of  
apxs, but the build system for the other programs needs itself access  
to APR.  And if that cannot be found  in a standard location, you'll  
error out and have to explicitly point to it.


S.

--
[EMAIL PROTECTED]http://www.temme.net/sander/
PGP FP: 51B4 8727 466A 0BC3 69F4  B7B8 B2BE BC40 1529 24AF




smime.p7s
Description: S/MIME cryptographic signature


Re: [EMAIL PROTECTED] WARNING: APR not found error (but I compiled with '--with-apr')

2006-12-21 Thread thomas Armstrong

Yep, Sander, it works!

./configure --with-apxs=/usr/local/httpd/bin/apxs
--with-apr=/usr/local/apr-httpd/bin/apr-config
--with-apr-util=/usr/local/apr-util-httpd/bin/apu-config

On 12/21/06, Sander Temme [EMAIL PROTECTED] wrote:


On Dec 21, 2006, at 4:57 AM, thomas Armstrong wrote:

 I compiled from sources Apache 2.0.59 with APR 0.9.13
 ./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all
 --with-apr=/usr/local/apr-httpd/bin/apr-config
 --with-apr-util=/usr/local/apr-util-httpd/bin/apu-config

 It works ok aparently, but I'm now trying to compile subversion 1.4.2:
 []# ./configure --with-apxs=/usr/local/httpd/bin/apxs

You need to also pass --with-apr and --with-apr-util to Subversion,
and point them to your APR installation.  There's more to Subversion
than the Apache module.  The module will get built with the help of
apxs, but the build system for the other programs needs itself access
to APR.  And if that cannot be found  in a standard location, you'll
error out and have to explicitly point to it.

S.

--
[EMAIL PROTECTED]http://www.temme.net/sander/
PGP FP: 51B4 8727 466A 0BC3 69F4  B7B8 B2BE BC40 1529 24AF







-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]