diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-01-25 21:20:12 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-01-25 21:20:12 +0000 |
commit | b964b053b67ac5daa6aa49ed5f823316eb3a7a9c (patch) | |
tree | a5fef3c0902f47cb3c7ac44e308d958c90bf66c9 /multimedia/libvpx/files/patch-configure | |
parent | www/waterfox: unbreak with Rust 1.23 (diff) |
multimedia/libvpx: update 1.7.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI: https://abi-laboratory.pro/tracker/timeline/libvpx/
Notes
Notes:
svn path=/head/; revision=459963
Diffstat (limited to 'multimedia/libvpx/files/patch-configure')
-rw-r--r-- | multimedia/libvpx/files/patch-configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/libvpx/files/patch-configure b/multimedia/libvpx/files/patch-configure new file mode 100644 index 000000000000..f288a07ef5d5 --- /dev/null +++ b/multimedia/libvpx/files/patch-configure @@ -0,0 +1,13 @@ +--version is a GNUism which BSD diff doesn't support + +--- configure.orig 2018-01-24 22:25:44 UTC ++++ configure +@@ -170,7 +170,7 @@ for t in ${all_targets}; do + [ -f "${source_path}/${t}.mk" ] && enable_feature ${t} + done + +-if ! diff --version >/dev/null; then ++if ! hash diff 2>/dev/null; then + die "diff missing: Try installing diffutils via your package manager." + fi + |