summaryrefslogtreecommitdiff
path: root/multimedia/libvpx/files/patch-configure
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-01-17 14:37:36 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-01-17 14:37:36 +0000
commit3531589f300282ed5ca2f16f30e0e2c7040ad5e5 (patch)
tree36dcdf6d2b850d3b2c47ae8ccdc9024825afdf50 /multimedia/libvpx/files/patch-configure
parentAllow to build on amd64 in addition to i386, by calling ${CC} with `-m32' (diff)
multimedia/libvpx: update 1.6.1
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.0..v1.6.1 ACC report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.6.0_to_1.6.1/compat_report.html MFH: 2017Q1 (maybe security from fuzz fixes)
Notes
Notes: svn path=/head/; revision=431741
Diffstat (limited to 'multimedia/libvpx/files/patch-configure')
-rw-r--r--multimedia/libvpx/files/patch-configure24
1 files changed, 0 insertions, 24 deletions
diff --git a/multimedia/libvpx/files/patch-configure b/multimedia/libvpx/files/patch-configure
index bfebfb9b1de3..cb66768b36b3 100644
--- a/multimedia/libvpx/files/patch-configure
+++ b/multimedia/libvpx/files/patch-configure
@@ -11,27 +11,3 @@
all_platforms="${all_platforms} generic-gnu"
# all_targets is a list of all targets that can be configured
-@@ -585,15 +589,14 @@ process_toolchain() {
- check_add_cflags -Wimplicit-function-declaration
- check_add_cflags -Wuninitialized
- check_add_cflags -Wunused-variable
-- case ${CC} in
-- *clang*)
-- # libvpx and/or clang have issues with aliasing:
-- # https://code.google.com/p/webm/issues/detail?id=603
-- # work around them until they are fixed
-- check_add_cflags -fno-strict-aliasing
-- ;;
-- *) check_add_cflags -Wunused-but-set-variable ;;
-- esac
-+ if ${CC} -v 2>&1 | grep "clang version" >/dev/null; then
-+ # libvpx and/or clang have issues with aliasing:
-+ # https://code.google.com/p/webm/issues/detail?id=603
-+ # work around them until they are fixed
-+ check_add_cflags -fno-strict-aliasing
-+ else
-+ check_add_cflags -Wunused-but-set-variable
-+ fi
- if enabled mips || [ -z "${INLINE}" ]; then
- enabled extra_warnings || check_add_cflags -Wno-unused-function
- else