diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-09 19:55:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-09 19:55:25 +0000 |
commit | 14111dc8c37598d45072b49f07c0fc021ad10cc6 (patch) | |
tree | 644f981eb74fa0bfaecdfb72a6e6898fd46d521d /main | |
parent | ef0b9f51ff32fd0854f12c062a8aa363048c2286 (diff) | |
download | aports-14111dc8c37598d45072b49f07c0fc021ad10cc6.tar.bz2 aports-14111dc8c37598d45072b49f07c0fc021ad10cc6.tar.xz |
main/squid: enable openssl
Earlier versions of squid would enable openssl support if it was
autodetected. We now need to add it explicitly.
ref #4279
Diffstat (limited to 'main')
-rw-r--r-- | main/squid/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/squid/APKBUILD b/main/squid/APKBUILD index aa4d79615..f097a7753 100644 --- a/main/squid/APKBUILD +++ b/main/squid/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=squid pkgver=3.5.4 -pkgrel=0 +pkgrel=1 pkgdesc="A full-featured Web proxy cache server." url="http://www.squid-cache.org" install="squid.pre-install squid.pre-upgrade" @@ -78,6 +78,7 @@ build() { --enable-follow-x-forwarded-for \ --with-large-files \ --with-default-user=squid \ + --with-openssl \ || return 1 make || return 1 |