diff options
author | Sam James <sam@gentoo.org> | 2023-03-17 21:21:37 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-17 21:52:20 +0000 |
commit | 56703991485dfac2ce34bd1f177191807f69c5fe (patch) | |
tree | e529278f6e97b919d62368c419aad6d67bff41ef /dev-perl/SDL/files | |
parent | app-crypt/gpgme: add 1.19.0 (diff) | |
download | gentoo-56703991485dfac2ce34bd1f177191807f69c5fe.tar.gz gentoo-56703991485dfac2ce34bd1f177191807f69c5fe.tar.bz2 gentoo-56703991485dfac2ce34bd1f177191807f69c5fe.zip |
dev-perl/SDL: fix build w/ clang 16
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-perl/SDL/files')
-rw-r--r-- | dev-perl/SDL/files/SDL-2.546-implicit-func-decl.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-perl/SDL/files/SDL-2.546-implicit-func-decl.patch b/dev-perl/SDL/files/SDL-2.546-implicit-func-decl.patch new file mode 100644 index 000000000000..9bbee3356486 --- /dev/null +++ b/dev-perl/SDL/files/SDL-2.546-implicit-func-decl.patch @@ -0,0 +1,40 @@ +https://github.com/PerlGameDev/SDL/pull/299 + +From 90d7056288282df9febf04acce6712f4071e4103 Mon Sep 17 00:00:00 2001 +From: Ryan Schmidt <git@ryandesign.com> +Date: Wed, 26 Jan 2022 02:55:04 -0600 +Subject: [PATCH] Fix implicit declaration of _calc_offset + +--- a/src/SDLx/Surface.xs ++++ b/src/SDLx/Surface.xs +@@ -16,6 +16,14 @@ + #include <SDL_gfxPrimitives.h> + #endif + ++int _calc_offset ( SDL_Surface* surface, int x, int y ) ++{ ++ int offset; ++ offset = (surface->pitch * y) / surface->format->BytesPerPixel; ++ offset += x; ++ return offset; ++} ++ + SV * get_pixel32 (SDL_Surface *surface, int x, int y) + { + /* Convert the pixels to 32 bit */ +@@ -52,14 +60,6 @@ SV * construct_p_matrix ( SDL_Surface *surface ) + return newRV_noinc((SV *)matrix); + } + +-int _calc_offset ( SDL_Surface* surface, int x, int y ) +-{ +- int offset; +- offset = (surface->pitch * y) / surface->format->BytesPerPixel; +- offset += x; +- return offset; +-} +- + unsigned int _get_pixel(SDL_Surface * surface, int offset) + { + unsigned int value; + |