diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-08-30 12:27:25 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-08-30 12:27:25 +0200 |
commit | 1edc7328f216117a0178c78d70e43a7bfc705089 (patch) | |
tree | 5dfdf19e7e7ed83b2dc130d7b6c52a526d9c13ac | |
parent | f214aa5dbe2c4aa3e543aecc2b6ad96d7786862e (diff) | |
parent | f266d26ebd89a8f7de55c53939e6fac0ff463940 (diff) | |
download | UXP-1edc7328f216117a0178c78d70e43a7bfc705089.tar UXP-1edc7328f216117a0178c78d70e43a7bfc705089.tar.gz UXP-1edc7328f216117a0178c78d70e43a7bfc705089.tar.lz UXP-1edc7328f216117a0178c78d70e43a7bfc705089.tar.xz UXP-1edc7328f216117a0178c78d70e43a7bfc705089.zip |
Merge branch 'master' of https://github.com/MoonchildProductions/UXP
-rw-r--r-- | old-configure.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/old-configure.in b/old-configure.in index 6cf0afdb8..96bb934e1 100644 --- a/old-configure.in +++ b/old-configure.in @@ -3542,11 +3542,15 @@ dnl = FFmpeg's ffvpx configuration dnl ======================================================== MOZ_FFVPX= -case "$CPU_ARCH" in - x86) + +dnl Build ffvpx on 32-bit Windows and all supported 64-bit platforms. +dnl 32-bit *nix has performance issues due to not supporting assembly decoder. + +case "$OS_ARCH:$CPU_ARCH" in + WINNT:x86) MOZ_FFVPX=1 ;; - x86_64) + *:x86_64) MOZ_FFVPX=1 ;; esac |