diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2006-01-31 00:25:29 +0800 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2006-01-31 00:25:29 +0800 |
commit | 3c5b2afbb7e2a63f9989e7fd2b9f5a109051ba69 (patch) | |
tree | 0c85abaa210fec111e6c50722ea2c4fbb404dde9 /www/w3m/Makefile | |
parent | d9bd45f0d14c2e1df0467e12a12d42dc1b984127 (diff) | |
download | freebsd-ports-gnome-3c5b2afbb7e2a63f9989e7fd2b9f5a109051ba69.tar.gz freebsd-ports-gnome-3c5b2afbb7e2a63f9989e7fd2b9f5a109051ba69.tar.zst freebsd-ports-gnome-3c5b2afbb7e2a63f9989e7fd2b9f5a109051ba69.zip |
Fix build error with WITHOUT_SSL.
Reported by: kris
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 4f3d7a0acd4c..bb5204d6dd4f 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -39,7 +39,7 @@ DOCS= FAQ.html HISTORY MANUAL.html README \ .if !defined(WITHOUT_SSL) && (exists(/usr/lib/libcrypto.so) || exists(${LOCALBASE}/lib/libcrypto.so)) USE_OPENSSL= yes .else -CONFIGURE_ARGS+= --without-ssl +CONFIGURE_ARGS+= --without-ssl --disable-digest-auth .endif .if defined(M17N) |