Mailing List Archive

[Bug 8993] - openssl library location(s) are hardcoded in configure script
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8993>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8993

openssl library location(s) are hardcoded in configure script

long@kestrel.cc.ku.edu changed:

What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |



------- Additional Comments From long@kestrel.cc.ku.edu 2002-05-13 20:01 -------
The problem is that the configure script directly tests for the existence of
libssl.a and libssl.so in the hard coded directories. It doesn't try compiling
a test program. My libssl.a happens to be in /usr/freeware/lib32 (IRIX):

echo $ECHO_N "checking for SSL/TLS toolkit libraries... $ECHO_C" >&6
ap_ssltk_libdir=""
for p in $ap_ssltk_base/lib /usr/local/openssl/lib \
/usr/local/ssl/lib /usr/local/lib /usr/lib /lib; do
if test -f "$p/libssl.a" -o -f "$p/libssl.so"; then
ap_ssltk_libdir="$p"
break
fi
done
if test ".$ap_ssltk_libdir" = .; then
{ { echo "$as_me:$LINENO: error: OpenSSL libraries not found" >&5
echo "$as_me: error: OpenSSL libraries not found" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me:$LINENO: result: $ap_ssltk_libdir" >&5
echo "${ECHO_T}$ap_ssltk_libdir" >&6

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org