Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nss: update to 3.64. #30264

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 9 additions & 5 deletions srcpkgs/nss/template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
_nsprver=4.29

pkgname=nss
version=3.63
version=3.64
revision=1
hostmakedepends="perl"
makedepends="nspr-devel sqlite-devel zlib-devel"
Expand All @@ -13,7 +13,7 @@ maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
license="MPL-2.0"
homepage="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS"
distfiles="${MOZILLA_SITE}/security/nss/releases/NSS_${version//\./_}_RTM/src/nss-${version}.tar.gz"
checksum=182d2fef629102ae9423aabf2c192242b565cf5098e82c5a26cf70c5e4ea2221
checksum=d3175427172e9c3a6f1ebc74452cb791590f28191c6a1a443dbc0d87c9df1126

export NS_USE_GCC=1
export LIBRUNPATH=
Expand Down Expand Up @@ -44,10 +44,14 @@ do_build() {
*) export NSS_DISABLE_AVX2=1 ;;
esac

# it's actually VSX, so disable on all BE ppc
case "$XBPS_TARGET_MACHINE" in
ppc64le*) ;;
ppc*) export NSS_DISABLE_ALTIVEC=1 ;;
ppc64le*)
export NSS_DISABLE_CRYPTO_VSX=0 ;;
ppc64*)
export NSS_DISABLE_CRYPTO_VSX=1 ;;
ppc*)
export NSS_DISABLE_CRYPTO_VSX=1
export NSS_DISABLE_ALTIVEC=1 ;;
esac

cd nss
Expand Down