diff options
author | 2023-05-19 00:12:35 +0300 | |
---|---|---|
committer | 2023-05-20 00:48:10 +0100 | |
commit | f49aca28f70a32e04b7049af2320c0793ba6168d (patch) | |
tree | f8ad09ce64abec89b6c244fecebe58820966b955 /media-gfx/gimp/files | |
parent | media-gfx/gimp: 2.10.34-r2 bump, fix 'execinfo.h' not found (musl) (diff) | |
download | gentoo-f49aca28f70a32e04b7049af2320c0793ba6168d.tar.gz gentoo-f49aca28f70a32e04b7049af2320c0793ba6168d.tar.bz2 gentoo-f49aca28f70a32e04b7049af2320c0793ba6168d.zip |
media-gfx/gimp: 2.10.34-r2, fix configure GCC13 implicit func. decl.
Closes: https://bugs.gentoo.org/899796
Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru>
Closes: https://github.com/gentoo/gentoo/pull/31087
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/gimp/files')
-rw-r--r-- | media-gfx/gimp/files/gimp-2.10_fix_configure_GCC13_implicit_function_declarations.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/media-gfx/gimp/files/gimp-2.10_fix_configure_GCC13_implicit_function_declarations.patch b/media-gfx/gimp/files/gimp-2.10_fix_configure_GCC13_implicit_function_declarations.patch new file mode 100644 index 000000000000..a266fb94a996 --- /dev/null +++ b/media-gfx/gimp/files/gimp-2.10_fix_configure_GCC13_implicit_function_declarations.patch @@ -0,0 +1,24 @@ +Gentoo issue: https://bugs.gentoo.org/899796 + +diff -Naur a/configure.ac b/configure.ac +--- a/configure.ac ++++ b/configure.ac +@@ -1291,13 +1291,14 @@ + #include <sys/types.h> + #include <sys/ipc.h> + #include <sys/shm.h> +- int main() ++ #include <stdlib.h> ++ int main(void) + { + int id; + char *shmaddr; +- id = shmget (IPC_PRIVATE, 4, IPC_CREAT | 0600); +- if (id == -1) +- exit (2); ++ id = shmget (IPC_PRIVATE, 4, IPC_CREAT | 0600); ++ if (id == -1) ++ exit (2); + shmaddr = shmat (id, 0, 0); + shmctl (id, IPC_RMID, 0); + if ((char*) shmat (id, 0, 0) == (char*) -1) |