diff options
author | Alexander Tsoy <alexander@tsoy.me> | 2020-01-29 14:57:34 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-01-30 08:33:07 +0200 |
commit | e82d0a5251dd59099ed8f07308d2b87374ac2afc (patch) | |
tree | e690ab3790a5eb1670c9f824832c4b151d1474e7 /x11-misc/x11vnc/files | |
parent | dev-python/xapp: use DISTUTILS_USE_SETUPTOOLS (diff) | |
download | gentoo-e82d0a5251dd59099ed8f07308d2b87374ac2afc.tar.gz gentoo-e82d0a5251dd59099ed8f07308d2b87374ac2afc.tar.bz2 gentoo-e82d0a5251dd59099ed8f07308d2b87374ac2afc.zip |
x11-misc/x11vnc: fix build with -fno-common
Closes: https://bugs.gentoo.org/706840
Signed-off-by: Alexander Tsoy <alexander@tsoy.me>
Closes: https://github.com/gentoo/gentoo/pull/14495
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc/x11vnc/files')
-rw-r--r-- | x11-misc/x11vnc/files/x11vnc-0.9.16-fno-common.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/x11-misc/x11vnc/files/x11vnc-0.9.16-fno-common.patch b/x11-misc/x11vnc/files/x11vnc-0.9.16-fno-common.patch new file mode 100644 index 000000000000..504159efe92f --- /dev/null +++ b/x11-misc/x11vnc/files/x11vnc-0.9.16-fno-common.patch @@ -0,0 +1,45 @@ +From a48b0b1cd887d7f3ae67f525d7d334bd2feffe60 Mon Sep 17 00:00:00 2001 +From: Alexander Tsoy <alexander@tsoy.me> +Date: Tue, 28 Jan 2020 22:21:01 +0300 +Subject: [PATCH] Fix build with -fno-common + +GCC 10 defaults to -fno-common +--- + src/util.c | 3 +++ + src/util.h | 6 +++--- + 2 files changed, 6 insertions(+), 3 deletions(-) + +diff --git a/src/util.c b/src/util.c +index a82a1a4..6a52ebf 100644 +--- a/src/util.c ++++ b/src/util.c +@@ -47,6 +47,9 @@ int hxl = 0; + #ifdef LIBVNCSERVER_HAVE_LIBPTHREAD + MUTEX(x11Mutex); + MUTEX(scrollMutex); ++MUTEX(clientMutex); ++MUTEX(inputMutex); ++MUTEX(pointerMutex); + #endif + + int nfix(int i, int n); +diff --git a/src/util.h b/src/util.h +index 35c1afd..99b5dd1 100644 +--- a/src/util.h ++++ b/src/util.h +@@ -102,9 +102,9 @@ extern struct timeval _mysleep; + #ifdef LIBVNCSERVER_HAVE_LIBPTHREAD + extern MUTEX(x11Mutex); + extern MUTEX(scrollMutex); +-MUTEX(clientMutex); +-MUTEX(inputMutex); +-MUTEX(pointerMutex); ++extern MUTEX(clientMutex); ++extern MUTEX(inputMutex); ++extern MUTEX(pointerMutex); + #endif + + #define X_INIT INIT_MUTEX(x11Mutex) +-- +2.24.1 + |