"Gabor Z. Papp" <[EMAIL PROTECTED]> writes:
> * Hrvoje Niksic <[EMAIL PROTECTED]>:
>
> | According to config.log, it seems your SSL includes are not in
> | /pkg/include after all:
>
> Sure, they are in /pkg/include/openssl.
You're right. The Autoconf-generated test is wrong, and I'm trying to
figure out why.
configure:25756: /bin/sh ./libtool gcc -c -O2 -Wall -Wno-implicit
-I/pkg/include conftest.c >&5
gcc -c -O2 -Wall -Wno-implicit -I/pkg/include conftest.c -fPIC -DPIC -o
.libs/conftest.o
*** Warning: inferring the mode of operation is deprecated.
*** Future versions of Libtool will require --mode=MODE be specified.
configure:25762: $? = 0
configure:25766: test -z
|| test ! -s conftest.err
configure:25769: $? = 0
configure:25772: test -s conftest.o
configure:25775: $? = 1
Of course there is no conftest.o when the file is specifically
requested in .libs/conftest.o! However, that's not how it works for
me:
configure:25465: /bin/sh ./libtool /opt/gcc4/bin/gcc -o conftest -O2 -Wall
-Wno-implicit conftest.c -ldl -lrt >&5
mkdir .libs
/opt/gcc4/bin/gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -ldl -lrt
*** Warning: inferring the mode of operation is deprecated.
*** Future versions of Libtool will require --mode=MODE be specified.
configure:25471: $? = 0
configure:25474: test -z || test ! -s conftest.err
configure:25477: $? = 0
configure:25480: test -s conftest
configure:25483: $? = 0
configure:25496: result: yes
I am somewhat baffled by this problem.