diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-07-15 04:55:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-07-15 04:55:12 +0000 |
commit | e7a7b2ef067dccd029e3123cad6b0f46d7a33193 (patch) | |
tree | 6c3a8ad4198fcf3aea49025aa4f7cc82be675d48 /sys-apps/shadow/files | |
parent | arm/sh stable to shut flameeyes up (diff) | |
download | gentoo-2-e7a7b2ef067dccd029e3123cad6b0f46d7a33193.tar.gz gentoo-2-e7a7b2ef067dccd029e3123cad6b0f46d7a33193.tar.bz2 gentoo-2-e7a7b2ef067dccd029e3123cad6b0f46d7a33193.zip |
Fix by Ulrich Mueller for building with USE=skey #139966.
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'sys-apps/shadow/files')
-rw-r--r-- | sys-apps/shadow/files/shadow-4.0.17-no-local-getpass.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys-apps/shadow/files/shadow-4.0.17-no-local-getpass.patch b/sys-apps/shadow/files/shadow-4.0.17-no-local-getpass.patch new file mode 100644 index 000000000000..3292e9a46096 --- /dev/null +++ b/sys-apps/shadow/files/shadow-4.0.17-no-local-getpass.patch @@ -0,0 +1,23 @@ +libshadow_getpass() was punted in 4.0.17 + +http://bugs.gentoo.org/139966 + +Patch by Ulrich Mueller + +Index: configure.in +=================================================================== +RCS file: /cvsroot/shadow/configure.in,v +retrieving revision 1.145 +diff -u -p -r1.145 configure.in +--- configure.in 25 Jun 2006 12:30:47 -0000 1.145 ++++ configure.in 15 Jul 2006 04:51:29 -0000 +@@ -329,9 +329,6 @@ if test "$with_skey" = "yes"; then + ],[ + skeychallenge((void*)0, (void*)0, (void*)0, 0); + ],[AC_DEFINE(SKEY_BSD_STYLE, 1, [Define to support newer BSD S/Key API])]) +- dnl libshadow_getpass() handles password prompt with enabled echo +- AC_DEFINE(getpass, libshadow_getpass, +- [Define to libshadow_getpass to use our own version of getpass().]) + fi + + AM_GNU_GETTEXT_VERSION(0.12.1) |