summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2013-06-15 00:14:02 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2013-06-15 00:14:02 -0500
commitb6d0a1d2ebb4c6cf6f3bcecb5c8ef6f8c18267ed (patch)
tree6f76cf22b847d522f32535a65eeb847161e9b3c1
parent63f5438069d4b47537ee9386feed88a940ea3f1f (diff)
Removing pam_pwcheck-3.9-pthread.patch
-rw-r--r--community/pam_pwcheck/PKGBUILD1
-rw-r--r--community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch58
2 files changed, 0 insertions, 59 deletions
diff --git a/community/pam_pwcheck/PKGBUILD b/community/pam_pwcheck/PKGBUILD
index 5efbfc830..deee1070c 100644
--- a/community/pam_pwcheck/PKGBUILD
+++ b/community/pam_pwcheck/PKGBUILD
@@ -14,7 +14,6 @@ md5sums=('85cd0d48500c160abcb0b9902e5594ce')
build() {
cd $srcdir/$pkgname-$pkgver
- patch -Np1 -i ${srcdir}/pam_pwcheck-3.9-pthread.patch
./configure --prefix=/usr --mandir=/usr/share/man --libdir=/usr/lib
make
}
diff --git a/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch b/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch
deleted file mode 100644
index ef007b469..000000000
--- a/community/pam_pwcheck/pam_pwcheck-3.9-pthread.patch
+++ /dev/null
@@ -1,58 +0,0 @@
---- pam_pwcheck-3.9.orig/src/read-files.c 2005-10-10 13:38:30.000000000 -0500
-+++ pam_pwcheck-3.9/src/read-files.c 2012-12-25 05:23:41.175269985 -0500
-@@ -30,8 +30,7 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <nss.h>
--#include <bits/libc-lock.h>
--#define __libc_lock_t pthread_mutex_t
-+#include <pthread.h>
-
- #include "read-files.h"
-
-@@ -341,11 +340,11 @@
- char *buffer, size_t buflen, int *errnop)
- {
- /* Locks the static variables in this file. */
-- __libc_lock_define_initialized (static, lock);
-+ static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
- enum nss_status status;
- FILE *stream = NULL;
-
-- __libc_lock_lock (lock);
-+ pthread_mutex_lock (&lock);
-
- status = internal_setent (&stream, "/shadow");
- if (status == NSS_STATUS_SUCCESS)
-@@ -361,7 +360,7 @@
- internal_endent (&stream);
- }
-
-- __libc_lock_unlock (lock);
-+ pthread_mutex_unlock (&lock);
-
- return status;
- }
-@@ -371,11 +370,11 @@
- char *buffer, size_t buflen, int *errnop)
- {
- /* Locks the static variables in this file. */
-- __libc_lock_define_initialized (static, lock);
-+ static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
- enum nss_status status;
- FILE *stream = NULL;
-
-- __libc_lock_lock (lock);
-+ pthread_mutex_lock (&lock);
-
- status = internal_setent (&stream, "/passwd");
- if (status == NSS_STATUS_SUCCESS)
-@@ -391,7 +390,7 @@
- internal_endent (&stream);
- }
-
-- __libc_lock_unlock (lock);
-+ pthread_mutex_unlock (&lock);
-
- return status;
- }