erlang: update to 26.2.5.12.

Require SSE2 on i686.
This commit is contained in:
Leah Neukirchen 2025-05-24 18:29:20 +02:00
parent 55ed229385
commit b38d59920e

View file

@ -1,6 +1,6 @@
# Template file for 'erlang' # Template file for 'erlang'
pkgname=erlang pkgname=erlang
version=26.2.5.5 version=26.2.5.12
revision=1 revision=1
build_style=gnu-configure build_style=gnu-configure
make_install_target="install install-docs" make_install_target="install install-docs"
@ -12,7 +12,7 @@ license="Apache-2.0"
homepage="http://www.erlang.org/" homepage="http://www.erlang.org/"
changelog="https://github.com/erlang/otp/releases" changelog="https://github.com/erlang/otp/releases"
distfiles="https://github.com/erlang/otp/archive/OTP-${version}.tar.gz" distfiles="https://github.com/erlang/otp/archive/OTP-${version}.tar.gz"
checksum=ddfea6f5026a6d4792817102a2e7466cdab266d24243488cd6eea347ddded584 checksum=93c97a3e14c3700eaaf2182b078fd35f8492da215327bd9c78a1f047946129f7
subpackages="erlang-doc" subpackages="erlang-doc"
if [ -z "$CROSS_BUILD" ]; then if [ -z "$CROSS_BUILD" ]; then
@ -23,6 +23,7 @@ fi
case "$XBPS_TARGET_MACHINE" in case "$XBPS_TARGET_MACHINE" in
ppc64*|*-musl) configure_args+=" --disable-hipe" ;; ppc64*|*-musl) configure_args+=" --disable-hipe" ;;
i686*) CFLAGS+=" -msse2" ;;
esac esac
pre_configure() { pre_configure() {