From d8add7cac467361c78bc446d5c0db8d385f18e56 Mon Sep 17 00:00:00 2001 From: Beat Gaetzi Date: Tue, 22 Mar 2011 15:24:49 +0000 Subject: - Update to 4.0 - Add PGO option to enable Profile-Guided Optimization [1]. PR: ports/132231 [1] (based on) Submitted by: lioux@ [1] Thanks to: andreast@, Anonymous , decke@, jsa@, swills@ and all the testers for their feedback! --- www/firefox-esr/files/patch-media-libvpx-vpx_config.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 www/firefox-esr/files/patch-media-libvpx-vpx_config.c (limited to 'www/firefox-esr/files/patch-media-libvpx-vpx_config.c') diff --git a/www/firefox-esr/files/patch-media-libvpx-vpx_config.c b/www/firefox-esr/files/patch-media-libvpx-vpx_config.c new file mode 100644 index 000000000000..1cc3dab5b8bb --- /dev/null +++ b/www/firefox-esr/files/patch-media-libvpx-vpx_config.c @@ -0,0 +1,16 @@ +--- media/libvpx/vpx_config_c.c~ ++++ media/libvpx/vpx_config_c.c +@@ -12,11 +12,11 @@ + /* 32 bit MacOS. */ + #include "vpx_config_x86-darwin9-gcc.c" + +-#elif defined(__linux__) && defined(__i386__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__i386__) + /* 32 bit Linux. */ + #include "vpx_config_x86-linux-gcc.c" + +-#elif defined(__linux__) && defined(__x86_64__) ++#elif (defined(__linux__) || defined(__FreeBSD__)) && defined(__x86_64__) + /* 64 bit Linux. */ + #include "vpx_config_x86_64-linux-gcc.c" + -- cgit v1.2.3