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