diff options
author | Holger Hoffstätte <holger@applied-asynchrony.com> | 2022-09-04 15:24:53 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-09-10 12:18:18 +0100 |
commit | 4971298c4bf0599edfec478d2f5d1e9f31de3bf9 (patch) | |
tree | 3298d6168ba1dd9f3bb4e3341ba234613e4e7102 /mail-client/alpine | |
parent | dev-libs/elfutils: revbump to unconditionally disable thread safety (diff) | |
download | gentoo-4971298c4bf0599edfec478d2f5d1e9f31de3bf9.tar.gz gentoo-4971298c4bf0599edfec478d2f5d1e9f31de3bf9.tar.bz2 gentoo-4971298c4bf0599edfec478d2f5d1e9f31de3bf9.zip |
mail-client/alpine: enable threads by default
Upstream enables pthreads by default, so enable it unconditionally.
Closes: https://bugs.gentoo.org/868396
Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/27138
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-client/alpine')
-rw-r--r-- | mail-client/alpine/alpine-2.26-r1.ebuild (renamed from mail-client/alpine/alpine-2.26.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail-client/alpine/alpine-2.26.ebuild b/mail-client/alpine/alpine-2.26-r1.ebuild index c06917b3931e..b3e7ee51414d 100644 --- a/mail-client/alpine/alpine-2.26.ebuild +++ b/mail-client/alpine/alpine-2.26-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://alpineapp.email/alpine/release/src/${P}.tar.xz LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="+chappa ipv6 kerberos ldap nls onlyalpine passfile smime ssl threads" +IUSE="+chappa ipv6 kerberos ldap nls onlyalpine passfile smime ssl" DEPEND="sys-libs/ncurses:= virtual/libcrypt:= @@ -37,13 +37,13 @@ src_prepare() { src_configure() { myconf=( --without-tcl + --with-pthread --with-system-pinerc="${EPREFIX}"/etc/pine.conf --with-system-fixed-pinerc="${EPREFIX}"/etc/pine.conf.fixed $(use_with ldap) $(use_with ssl) $(use_with passfile passfile .pinepwd) $(use_with kerberos krb5) - $(use_with threads pthread) $(use_enable nls) $(use_with ipv6) $(use_with smime) |