- (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
This commit is contained in:
parent
3b9734c700
commit
bc33bd44a2
|
@ -9,6 +9,7 @@
|
|||
- (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
|
||||
to compile on more platforms (incl NeXT).
|
||||
- (djm) Added bsd-inet_aton and configure support for NeXT
|
||||
- (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
|
||||
|
||||
20000709
|
||||
- (djm) Only enable PAM_TTY kludge for Linux. Problem report from
|
||||
|
|
4
TODO
4
TODO
|
@ -13,6 +13,4 @@
|
|||
seem to act correctly. Ctrl-C and Ctrl-Z don't return echo to the
|
||||
underlying shell.
|
||||
|
||||
- scp is broken under NeXT, and will need some TLC to be portable to
|
||||
such an old platform. "struct dirent" does not exist, and under
|
||||
next those functions take a single integer input.
|
||||
- utmp/wtmp logging does not work on NeXT
|
||||
|
|
|
@ -54,7 +54,8 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
|||
#ifdef HAVE_NETGROUP_H
|
||||
# include <netgroup.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETDB_H
|
||||
#if defined(HAVE_NETDB_H) && !defined(HAVE_NEXT)
|
||||
/* Next includes this as part of another header */
|
||||
# include <netdb.h>
|
||||
#endif
|
||||
#ifdef HAVE_ENDIAN_H
|
||||
|
|
Loading…
Reference in New Issue