Skip to content

Commit

Permalink
multimedia/libvpx: update 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeich committed Jun 1, 2024
1 parent 05c704d commit ebf9487
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion multimedia/libvpx/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PORTNAME= libvpx
DISTVERSIONPREFIX= v
DISTVERSION= 1.14.0
DISTVERSION= 1.14.1
CATEGORIES= multimedia

MAINTAINER= jbeich@FreeBSD.org
Expand Down
6 changes: 3 additions & 3 deletions multimedia/libvpx/distinfo
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
TIMESTAMP = 1704834742
SHA256 (webmproject-libvpx-v1.14.0_GH0.tar.gz) = 5f21d2db27071c8a46f1725928a10227ae45c5cd1cad3727e4aafbe476e321fa
SIZE (webmproject-libvpx-v1.14.0_GH0.tar.gz) = 5606471
TIMESTAMP = 1717012823
SHA256 (webmproject-libvpx-v1.14.1_GH0.tar.gz) = 901747254d80a7937c933d03bd7c5d41e8e6c883e0665fadcb172542167c7977
SIZE (webmproject-libvpx-v1.14.1_GH0.tar.gz) = 5614104
32 changes: 16 additions & 16 deletions multimedia/libvpx/files/patch-build_make_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
- Recognize DragonFly as x86_64-linux-gcc target by default
- Don't override -march= on armv6, armv7 and aarch64
--- build/make/configure.sh.orig 2024-01-09 21:12:22 UTC
--- build/make/configure.sh.orig 2024-05-29 20:00:23 UTC
+++ build/make/configure.sh
@@ -752,6 +752,14 @@ process_common_toolchain() {
@@ -785,6 +785,14 @@ process_common_toolchain() {
case "$gcctarget" in
aarch64*)
tgt_isa=arm64
;;
+ ;;
+ armv6*-gnueabihf)
+ tgt_isa=armv6
+ float_abi=hard
+ ;;
+ armv6*-gnueabi)
+ tgt_isa=armv6
+ float_abi=softfp
+ ;;
;;
armv7*-hardfloat* | armv7*-gnueabihf | arm-*-gnueabihf)
tgt_isa=armv7
float_abi=hard
@@ -806,7 +814,7 @@ process_common_toolchain() {
@@ -840,7 +848,7 @@ process_common_toolchain() {
[ -z "$tgt_isa" ] && tgt_isa=x86
tgt_os=win32
;;
Expand All @@ -28,16 +28,16 @@
tgt_os=linux
;;
*solaris2.10)
@@ -997,7 +1005,7 @@ EOF
fi
done
;;
- armv7|armv7s)
+ armv6|armv7|armv7s)
soft_enable neon
# Only enable neon_asm when neon is also enabled.
enabled neon && soft_enable neon_asm
@@ -1017,29 +1025,6 @@ EOF
@@ -1015,7 +1023,7 @@ EOF
arm*)
soft_enable runtime_cpu_detect
- if [ ${tgt_isa} = "armv7" ] || [ ${tgt_isa} = "armv7s" ]; then
+ if [ ${tgt_isa} = "armv6" ] || [ ${tgt_isa} = "armv7" ] || [ ${tgt_isa} = "armv7s" ]; then
soft_enable neon
# Only enable neon_asm when neon is also enabled.
enabled neon && soft_enable neon_asm
@@ -1033,29 +1041,6 @@ EOF
arch_int=${tgt_isa##armv}
arch_int=${arch_int%%te}
tune_cflags="-mtune="
Expand Down
2 changes: 1 addition & 1 deletion multimedia/libvpx/pkg-plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ lib/libvpx.a
lib/libvpx.so
lib/libvpx.so.9
lib/libvpx.so.9.0
lib/libvpx.so.9.0.0
lib/libvpx.so.9.0.1
libdata/pkgconfig/vpx.pc

0 comments on commit ebf9487

Please sign in to comment.