jean-frederic clere wrote:

it tells:
+++
[EMAIL PROTECTED]:~> usr/local/apache2/bin/apxs -q APU_INCLUDEDIR
/home/jfclere/usr/local/apr-util/include/apr-1
+++


That's bad.
It should point to your apr-utils/include.

NO:
+++
ls -lt /home/jfclere/usr/local/apr-util/include/
total 4
drwxr-xr-x    2 jfclere  users        4096 2005-06-29 10:43 apr-1
+++



Sorry, it was typo.

apxs -q APU_INCLUDEDIR
/home/jfclere/usr/local/apr-util/include/apr-1
your apr-util is at:
/home/jfclere/usr/local/apr-util/include

and that's where the includes should be thought.

OTOH it might be the error in the configure.in:

INCTEMP="`$APXS -q APR_INCLUDEDIR` `$APXS -q APU_INCLUDEDIR`"
for INC in ${INCTEMP}; do
  APRINCLUDEDIR="${APRINCLUDEDIR} -I${INC}"
done                    

Try to change the:
INCTEMP="`$APXS -q APR_INCLUDEDIR` `$APXS -q APU_INCLUDEDIR`"
to:
INCTEMP="`$APXS -q APU_INCLUDEDIR` `$APXS -q APR_INCLUDEDIR`"

Seems strange that the
-I/home/jfclere/usr/local/apr-util/include/apr-1 is not listed on the
original dump you've posted.


Regards,
Mladen.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to