diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /gfx/cairo/win32-ffs-gcc.patch | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/cairo/win32-ffs-gcc.patch')
-rw-r--r-- | gfx/cairo/win32-ffs-gcc.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gfx/cairo/win32-ffs-gcc.patch b/gfx/cairo/win32-ffs-gcc.patch new file mode 100644 index 0000000000..e7cc1d1f6b --- /dev/null +++ b/gfx/cairo/win32-ffs-gcc.patch @@ -0,0 +1,25 @@ +diff --git a/gfx/cairo/cairo/src/cairo-compiler-private.h b/gfx/cairo/cairo/src/cairo-compiler-private.h +index ffac9ce..9a05831 100644 +--- a/gfx/cairo/cairo/src/cairo-compiler-private.h ++++ b/gfx/cairo/cairo/src/cairo-compiler-private.h +@@ -229,16 +229,20 @@ ffs (int x) + + if (_BitScanForward(&i, x) != 0) + return i + 1; + + return 0; + } + #endif + ++#elif defined(__WIN32__) && defined(__GNUC__) ++ ++#define ffs(x) __builtin_ffs(x) ++ + #endif + + #if defined(_MSC_VER) && defined(_M_IX86) + /* When compiling with /Gy and /OPT:ICF identical functions will be folded in together. + The CAIRO_ENSURE_UNIQUE macro ensures that a function is always unique and + will never be folded into another one. Something like this might eventually + be needed for GCC but it seems fine for now. */ + #define CAIRO_ENSURE_UNIQUE \ |