diff options
author | Bradley Sepos <[email protected]> | 2018-06-18 12:01:30 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-06-18 12:01:52 -0400 |
commit | 53e89a2007b35bc0637b398fce63e1e775bef453 (patch) | |
tree | 55b224b6ecc8261db744e63104159ed038cb1103 /contrib | |
parent | c6fec7b5b7246fcc5c94a5febc7565176b96e580 (diff) |
contrib: Set libvpx target to minimum system version we support on macOS.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libvpx/module.defs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/libvpx/module.defs b/contrib/libvpx/module.defs index 4650307cf..f9b38a886 100644 --- a/contrib/libvpx/module.defs +++ b/contrib/libvpx/module.defs @@ -33,3 +33,9 @@ ifeq (linux,$(BUILD.system)) LIBVPX.CONFIGURE.extra += --enable-pic endif endif + +ifeq (0-darwin,$(BUILD.cross)-$(BUILD.system)) + ifeq (x86_64,$(BUILD.machine)) + LIBVPX.CONFIGURE.extra += --target=x86_64-darwin14-gcc + endif +endif |