----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
In the configure I see this test:
>>
# Add a test to check for a broken RH 6.1 RPM installation.
# apxs incorrectly returns "module" instead of the right path.
if ${TEST} "${libexecdir}" = "module" ; then
{ echo "configure: error: You have a broken RedHat Apache RPM.
Please
download the latest Apache source distribution from
www.apache.org and build using that." 1>&2; exit 1; }
fi
<<
But on my Redhat 6.1 box, apxs actually returns the string "modules",
not "module". So I didn't get the above warning. Changing configure.in
to the following would work on my box:
>>
if ${TEST} "${libexecdir}" = "modules" ; then
<<
HTH...
-Scott
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]