0,0 → 1,18 |
Bug-Debian: https://bugs.debian.org/878566 |
Author: Henrik Grubbström (Grubba) <grubba@grubba.org> |
Origin: upstream, http://pike-librarian.lysator.liu.se/piff.xml?module=pike.git&file=src/modules/Postgres/pgresult.c&from=bbd892a86e2f103ea5cf21199c7f2c19f6214ddd&to=7d05b499bb04616ae52ab094c274cc92156fbd7e |
Description: Fixed compilation when STATIC_MUTEX_INIT exists and paranoid linker. |
|
diff --git a/src/modules/Postgres/pgresult.c b/src/modules/Postgres/pgresult.c |
index fb4b553859..03109ec96c 100644 |
--- a/src/modules/Postgres/pgresult.c |
+++ b/src/modules/Postgres/pgresult.c |
@@ -102,7 +102,7 @@ |
# define PQ_LOCK() mt_lock(pg_mutex) |
# define PQ_UNLOCK() mt_unlock(pg_mutex) |
# else |
-extern PIKE_MUTEX_T pike_postgres_mutex STATIC_MUTEX_INIT; |
+extern PIKE_MUTEX_T pike_postgres_mutex; |
# define PQ_FETCH() |
#define PQ_LOCK() mt_lock(&pike_postgres_mutex) |
#define PQ_UNLOCK() mt_unlock(&pike_postgres_mutex) |