From 75817f90568d65068cbd08f2e216b09cd6a41e15 Mon Sep 17 00:00:00 2001 From: djm Date: Mon, 13 May 2002 05:14:08 +0000 Subject: [PATCH] - (djm) Bug #234: missing readpassphrase declaration and defines --- ChangeLog | 1 + configure.ac | 4 ++-- includes.h | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a7930c84..43f5bdbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ - (djm) Add --with-privsep-path configure option - (djm) Update RPM spec file: different superuser path, use /var/empty/sshd for privsep + - (djm) Bug #234: missing readpassphrase declaration and defines 20020511 - (tim) [configure.ac] applied a rework of djm's OpenSSL search cleanup patch. diff --git a/configure.ac b/configure.ac index 37ef8b24..2181ac9c 100644 --- a/configure.ac +++ b/configure.ac @@ -349,7 +349,7 @@ AC_ARG_WITH(libs, AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \ getopt.h glob.h lastlog.h limits.h login.h \ login_cap.h maillock.h netdb.h netgroup.h \ - netinet/in_systm.h paths.h pty.h \ + netinet/in_systm.h paths.h pty.h readpassphrase.h \ rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \ strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \ sys/mman.h sys/select.h sys/stat.h \ @@ -1952,7 +1952,7 @@ fi # Whether to mess with the default path SERVER_PATH_MSG="(default)" AC_ARG_WITH(default-path, - [ --with-default-path=PATH Specify default \$PATH environment for server], + [ --with-default-path= Specify default \$PATH environment for server], [ if test "$USES_LOGIN_CONF" = "yes" ; then AC_MSG_WARN([ diff --git a/includes.h b/includes.h index a63e8724..e20d7a51 100644 --- a/includes.h +++ b/includes.h @@ -142,6 +142,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } #ifdef USE_PAM # include #endif +#ifdef HAVE_READPASSPHRASE_H +# include +#endif #include /* For OPENSSL_VERSION_NUMBER */ -- 2.45.1