diff options
Diffstat (limited to 'www/firefox-esr/files/patch-media-libvpx-vpx_config.h')
-rw-r--r-- | www/firefox-esr/files/patch-media-libvpx-vpx_config.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/firefox-esr/files/patch-media-libvpx-vpx_config.h b/www/firefox-esr/files/patch-media-libvpx-vpx_config.h new file mode 100644 index 000000000000..d813ca8c608b --- /dev/null +++ b/www/firefox-esr/files/patch-media-libvpx-vpx_config.h @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config.h~ ++++ media/libvpx/vpx_config.h +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.h" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.h" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.h" + |