summarylogtreecommitdiffstats
path: root/pam_unix2-glibc216.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pam_unix2-glibc216.patch')
-rw-r--r--pam_unix2-glibc216.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/pam_unix2-glibc216.patch b/pam_unix2-glibc216.patch
new file mode 100644
index 000000000000..faa6a235f6ac
--- /dev/null
+++ b/pam_unix2-glibc216.patch
@@ -0,0 +1,20 @@
+Index: pam_unix2-2.9.1/src/read-files.c
+===================================================================
+--- pam_unix2-2.9.1.orig/src/read-files.c
++++ pam_unix2-2.9.1/src/read-files.c
+@@ -30,8 +30,14 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <nss.h>
+-#include <bits/libc-lock.h>
++#include <pthread.h>
+ #define __libc_lock_t pthread_mutex_t
++#define __libc_lock_define_initialized(CLASS,NAME) \
++ CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER;
++#define __libc_lock_lock(NAME) \
++ pthread_mutex_lock, (&(NAME))
++#define __libc_lock_unlock(NAME) \
++ pthread_mutex_unlock, (&(NAME))
+
+ #include "read-files.h"
+