diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2004-08-21 21:52:53 +0800 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2004-08-21 21:52:53 +0800 |
commit | 89e0f9a59dde6366afac86c5dd075ece494d7766 (patch) | |
tree | 7fbd202158b9e1849fd4acc0aca05ecb5a3edf9e /www/w3m | |
parent | c104cb87fd8acd84965c805fa31a9f4bd915ce97 (diff) | |
download | freebsd-ports-gnome-89e0f9a59dde6366afac86c5dd075ece494d7766.tar.gz freebsd-ports-gnome-89e0f9a59dde6366afac86c5dd075ece494d7766.tar.zst freebsd-ports-gnome-89e0f9a59dde6366afac86c5dd075ece494d7766.zip |
Fix build error in the environment that using the OpenSSL from the ports
instead of the one from the base system.
Submitted by: Ingo Rohlfs <ingo.rohlfs@gmx.de>
Diffstat (limited to 'www/w3m')
-rw-r--r-- | www/w3m/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index 30504a686c30..f9d124f7283b 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -30,7 +30,7 @@ DOCS= FAQ.html HISTORY MANUAL.html README \ README.dict README.func STORY.html keymap.default \ keymap.lynx menu.default menu.submenu -.if !defined(WITHOUT_SSL) && exists(/usr/lib/libcrypto.so) +.if !defined(WITHOUT_SSL) && (exists(/usr/lib/libcrypto.so) || exists(${LOCALBASE}/lib/libcrypto.so)) USE_OPENSSL= yes .else CONFIGURE_ARGS+= --without-ssl |