net-analyzer/ettercap: Fix CFLAGS=-fno-common

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=707674
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
Jeroen Roovers
2020-02-01 01:28:52 +01:00
parent 045fce9aa4
commit 62034fa04d
3 changed files with 30 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -47,6 +47,9 @@ DEPEND="${RDEPEND}
test? ( dev-libs/check )
sys-devel/flex
virtual/yacc"
PATCHES=(
"${FILESDIR}"/${PN}-0.8.3-fno-common.patch
)
src_prepare() {
sed -i "s:Release:Release Gentoo:" CMakeLists.txt || die

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -46,6 +46,9 @@ DEPEND="${RDEPEND}
test? ( dev-libs/check )
sys-devel/flex
virtual/yacc"
PATCHES=(
"${FILESDIR}"/${PN}-0.8.3-fno-common.patch
)
src_prepare() {
sed -i "s:Release:Release Gentoo:" CMakeLists.txt || die

View File

@@ -0,0 +1,22 @@
--- a/include/ec_threads.h
+++ b/include/ec_threads.h
@@ -12,7 +12,7 @@
};
/* a value to be used to return errors in fuctcions using pthread_t values */
-pthread_t EC_PTHREAD_NULL;
+extern pthread_t EC_PTHREAD_NULL;
#define EC_PTHREAD_SELF EC_PTHREAD_NULL
#define PTHREAD_ID(id) (*(unsigned long*)&(id))
--- a/src/ec_threads.c
+++ b/src/ec_threads.c
@@ -46,6 +46,8 @@
#define INIT_LOCK do{ DEBUG_MSG("thread_init_lock"); pthread_mutex_lock(&init_mtx); } while(0)
#define INIT_UNLOCK do{ DEBUG_MSG("thread_init_unlock"); pthread_mutex_unlock(&init_mtx); } while(0)
+pthread_t EC_PTHREAD_NULL;
+
/* protos... */
pthread_t ec_thread_detached(char *name, char *desc, void *(*function)(void *), void *args, int detached);