diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-08-21 13:52:53 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-08-21 13:52:53 +0000 |
commit | 34d7b2e51b531c462729945c4c9fc557db1f718c (patch) | |
tree | 8a3633bd5a13bbce7945946ee68639817ea08269 /www/w3m/Makefile | |
parent | 2823cdaa29dab624e8631a59d8b42c699be819ba (diff) |
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>
Notes
Notes:
svn path=/head/; revision=116944
Diffstat (limited to 'www/w3m/Makefile')
-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 |