Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-02-04 09:37:37 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2018-02-04 09:37:37 +0100
commit043b28ac8ebcaedac5d39bdf7f1f366b7818a666 (patch)
tree4f7784dc6b5530bbb7623d0ca2ddb4c71beb3c40 /patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch
parent7be0daa504d7c43e20dc5583350417bff8d0f474 (diff)
reorganized directory structure for package description, patches and other files
Diffstat (limited to 'patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch')
-rw-r--r--patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch67
1 files changed, 0 insertions, 67 deletions
diff --git a/patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch b/patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch
deleted file mode 100644
index 1ac4a11..0000000
--- a/patches-i486-stage1/pam-1.3.0-unix-passwd-no-yp.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-diff -rauN pam_unix2-2.9.1/config.h.in pam_unix2-2.9.1-unix-passwd-no-yp-patch/config.h.in
---- pam_unix2-2.9.1/config.h.in 2012-04-03 15:31:24.000000000 +0200
-+++ pam_unix2-2.9.1-unix-passwd-no-yp-patch/config.h.in 2017-12-08 16:15:09.870000003 +0100
-@@ -194,3 +194,6 @@
-
- /* Define to 1 if you need to in order for `stat' and other things to work. */
- #undef _POSIX_SOURCE
-+
-+/* Define to 1 if you have the <rpcsvc/yp_prot.h> header file. */
-+#undef HAVE_RPCSVC_YP_PROT_H
-diff -rauN pam_unix2-2.9.1/configure.in pam_unix2-2.9.1-unix-passwd-no-yp-patch/configure.in
---- pam_unix2-2.9.1/configure.in 2012-04-03 15:31:17.000000000 +0200
-+++ pam_unix2-2.9.1-unix-passwd-no-yp-patch/configure.in 2017-12-08 16:15:22.160000000 +0100
-@@ -60,6 +60,7 @@
- AC_CHECK_HEADERS(crypt.h)
- AC_CHECK_HEADERS(stdlib.h pwd.h sys/types.h syslog.h sys/syslog.h string.h strings.h, , AC_MSG_ERROR(some basic headers are missing))
- AC_CHECK_HEADERS(security/pam_appl.h security/pam_modules.h, , AC_MSG_ERROR(broken libpam installation))
-+AC_CHECK_HEADERS(rpcsvc/yp_prot.h)
-
- dnl Check for Linux-PAM 0.99.x
- AC_CHECK_HEADERS(security/pam_ext.h)
-diff -rauN pam_unix2-2.9.1/src/unix_passwd.c pam_unix2-2.9.1-unix-passwd-no-yp-patch/src/unix_passwd.c
---- pam_unix2-2.9.1/src/unix_passwd.c 2012-04-03 15:24:51.000000000 +0200
-+++ pam_unix2-2.9.1-unix-passwd-no-yp-patch/src/unix_passwd.c 2017-12-08 16:15:33.389999993 +0100
-@@ -53,8 +53,10 @@
- #include <rpc/types.h>
- #include <nss.h>
- #include <syslog.h>
-+#if defined(HAVE_YP_PROT_H)
- #include <rpcsvc/yp_prot.h>
- #include <rpcsvc/ypclnt.h>
-+#endif
-
- #define PAM_SM_PASSWORD
- #include <security/pam_modules.h>
-@@ -413,6 +415,7 @@
- }
- }
-
-+#if defined(HAVE_YP_PROT_H)
- static char *
- getnismaster (pam_handle_t *pamh, int flags)
- {
-@@ -445,6 +448,7 @@
-
- return master;
- }
-+#endif
-
- static int
- read_loop (int fd, char *buffer, int count)
-@@ -1095,6 +1099,7 @@
-
- ulckpwdf ();
- }
-+#if defined(HAVE_YP_PROT_H)
- else if (data->service == S_YP)
- {
- struct yppasswd yppwd;
-@@ -1137,6 +1142,7 @@
- retval = PAM_AUTHTOK_ERR;
- }
- }
-+#endif
-
- return retval;
- }