summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-11 14:59:08 +1000
committerDamien Miller <djm@mindrot.org>2000-07-11 14:59:08 +1000
commitbc33bd44a2ef165dea1d974fc2d80b822ae08c2a (patch)
treeb83d3eb677281d06ae9ab6736e616d0ed0806113
parent3b9734c700be8a31dc0966e58abe904b01da6492 (diff)
- (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
-rw-r--r--ChangeLog1
-rw-r--r--TODO4
-rw-r--r--includes.h3
3 files changed, 4 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a06f8d9ba..b73255a21 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known 9 - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
10 to compile on more platforms (incl NeXT). 10 to compile on more platforms (incl NeXT).
11 - (djm) Added bsd-inet_aton and configure support for NeXT 11 - (djm) Added bsd-inet_aton and configure support for NeXT
12 - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
12 13
1320000709 1420000709
14 - (djm) Only enable PAM_TTY kludge for Linux. Problem report from 15 - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
diff --git a/TODO b/TODO
index 6542e7000..1d46ae1c3 100644
--- a/TODO
+++ b/TODO
@@ -13,6 +13,4 @@
13 seem to act correctly. Ctrl-C and Ctrl-Z don't return echo to the 13 seem to act correctly. Ctrl-C and Ctrl-Z don't return echo to the
14 underlying shell. 14 underlying shell.
15 15
16- scp is broken under NeXT, and will need some TLC to be portable to 16- utmp/wtmp logging does not work on NeXT
17 such an old platform. "struct dirent" does not exist, and under
18 next those functions take a single integer input.
diff --git a/includes.h b/includes.h
index 716d02f31..2f3a56ec6 100644
--- a/includes.h
+++ b/includes.h
@@ -54,7 +54,8 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
54#ifdef HAVE_NETGROUP_H 54#ifdef HAVE_NETGROUP_H
55# include <netgroup.h> 55# include <netgroup.h>
56#endif 56#endif
57#ifdef HAVE_NETDB_H 57#if defined(HAVE_NETDB_H) && !defined(HAVE_NEXT)
58/* Next includes this as part of another header */
58# include <netdb.h> 59# include <netdb.h>
59#endif 60#endif
60#ifdef HAVE_ENDIAN_H 61#ifdef HAVE_ENDIAN_H