1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-09 13:50:00 +00:00

Fixed --openssl-prefix

This commit is contained in:
Eric Petit 2006-02-10 05:43:44 +00:00
parent e1671b50e6
commit 8f4151158a

4
configure vendored
View file

@ -30,8 +30,8 @@ openssl_test()
SHA1( 0, 0, 0 );
}
EOF
if [ -n "$PREFIX" ]; then
TMPFLAGS="-I$PREFIX/include -L$PREFIX/lib"
if [ -n "$OPENSSL_PREFIX" ]; then
TMPFLAGS="-I$OPENSSL_PREFIX/include -L$OPENSSL_PREFIX/lib"
fi
if $CC $TMPFLAGS -o testconf testconf.c -lcrypto > /dev/null 2>&1
then