diff options
author | Tim Rice <tim@multitalents.net> | 2007-03-26 18:35:28 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2007-03-26 18:35:28 +0200 |
commit | 99203ec48b030f121511cd785acaf9f47760ad72 (patch) | |
tree | 36575e610e6673c9e8d76837509b9c3236a4b806 /defines.h | |
parent | - (dtucker) [Makefile.in configure.ac] Replace single-purpose LIBSELINUX, (diff) | |
download | openssh-99203ec48b030f121511cd785acaf9f47760ad72.tar.xz openssh-99203ec48b030f121511cd785acaf9f47760ad72.zip |
20070326
- (tim) [auth.c configure.ac defines.h session.c openbsd-compat/port-uw.c
openbsd-compat/port-uw.h openbsd-compat/xcrypt.c] Rework libiaf test/defines
to account for IRIX having libiaf but not set_id(). Patch with & ok dtucker@
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.138 2006/09/21 13:13:30 dtucker Exp $ */ +/* $Id: defines.h,v 1.139 2007/03/26 16:35:28 tim Exp $ */ /* Constants */ @@ -696,7 +696,8 @@ struct winsize { # define CUSTOM_SYS_AUTH_PASSWD 1 #endif -#ifdef HAVE_LIBIAF +#if defined(HAVE_LIBIAF) && defined(HAVE_SET_ID) && !defined(BROKEN_LIBIAF) +# define USE_LIBIAF # define CUSTOM_SYS_AUTH_PASSWD 1 #endif |