diff options
author | Sebastian Pipping <sping@gentoo.org> | 2020-11-26 16:10:25 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2020-11-26 16:13:14 +0100 |
commit | c00abe05e686dff46288a9ae7c887d92b93c3cef (patch) | |
tree | b34f94e60ab57a5b8fae9809d438e4ac591c288e /www-servers/gatling/files | |
parent | dev-python/pyfakefs: Bump to 4.3.2 (diff) | |
download | gentoo-c00abe05e686dff46288a9ae7c887d92b93c3cef.tar.gz gentoo-c00abe05e686dff46288a9ae7c887d92b93c3cef.tar.bz2 gentoo-c00abe05e686dff46288a9ae7c887d92b93c3cef.zip |
www-servers/gatling: Fix compile for GCC 10
Closes: https://bugs.gentoo.org/706396
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Diffstat (limited to 'www-servers/gatling/files')
-rw-r--r-- | www-servers/gatling/files/gatling-0.15-gcc10.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www-servers/gatling/files/gatling-0.15-gcc10.patch b/www-servers/gatling/files/gatling-0.15-gcc10.patch new file mode 100644 index 000000000000..446ea5cffdec --- /dev/null +++ b/www-servers/gatling/files/gatling-0.15-gcc10.patch @@ -0,0 +1,38 @@ +From b815fc02179e8f25a6bea2bc1ee7306ffea37258 Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping <sebastian@pipping.org> +Date: Thu, 26 Nov 2020 16:05:26 +0100 +Subject: [PATCH] Fix build with -fno-common or GCC 10 + +--- + dirfd.c | 1 + + dirfd.h | 2 +- + 2 files changed, 2 insertions(+), 1 deletion(-) + +diff --git a/dirfd.c b/dirfd.c +index 6a0217e..792bd29 100644 +--- a/dirfd.c ++++ b/dirfd.c +@@ -34,6 +34,7 @@ struct hashtable dc; + + #ifdef __linux__ + int rootwd; ++int ifd; + #endif + + /* initialize a hashtable as empty */ +diff --git a/dirfd.h b/dirfd.h +index cdfc4a3..a76c5d8 100644 +--- a/dirfd.h ++++ b/dirfd.h +@@ -21,7 +21,7 @@ + * given dir, and it will return the fd or -1 on error. */ + + #ifdef __linux__ +-int ifd; /* inotify fd */ ++extern int ifd; /* inotify fd */ + #endif + + struct dircacheentry { +-- +2.27.0 + |