[7522] in Kerberos
Re: one further patch for telnetd under AIX 4.1.4
daemon@ATHENA.MIT.EDU (Roland Schemers)
Sun Jun 23 20:08:16 1996
To: kerberos@MIT.EDU
Date: 23 Jun 1996 16:43:28 -0700
From: schemers@leland.Stanford.EDU (Roland Schemers)
In article <4qkkai$kf8@liberty.Stanford.EDU>,
Roland Schemers <schemers@leland.Stanford.EDU> wrote:
>
>I did a "gcc -v foo.c" and didn't see anything specific for AIX 4.
>You could take a look at what util/pty/configure.in does with
>$krb5_cv_host and do something similar though.
>
After a quick glance at the telnetd Makefiles created by configure
on a 325 and 41 system I noticed the following should work:
#if defined(_AIX)
#if defined(HAVE_SYS_TTY_H)
/* AIX 3.2 */
#else
/* AIX 4.x */
#endif /* HAVE_SYS_TTY_H */
#endif /* AIX */
There is probably a better way to do it, but that should work....
roland