summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--TODO50
-rw-r--r--configure.in2
3 files changed, 50 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 77bb2e5fb..9247ca021 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120001122
2 - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
3 are compilable.
4 - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
5
120001117 620001117
2 - (bal) Changed from 'primes' to 'primes.out' for consistancy sake. It 7 - (bal) Changed from 'primes' to 'primes.out' for consistancy sake. It
3 has no affect the output. Patch by Corinna Vinschen <vinschen@redhat.com> 8 has no affect the output. Patch by Corinna Vinschen <vinschen@redhat.com>
diff --git a/TODO b/TODO
index d32c5d5b0..86bb71ad5 100644
--- a/TODO
+++ b/TODO
@@ -1,12 +1,50 @@
1- Replacement for setproctitle() 1Programming:
2- Replacement for setproctitle() - HP/UX support only currently
2 3
3- Improve PAM support (a pam_lastlog module will cause sshd to exit) 4- Improve PAM support (a pam_lastlog module will cause sshd to exit)
4 5
5- Better documentation 6- Complete Tru64 SIA support
6 7
7- Replace the horror in acconfig.h which tries to comphensate for the 8- Finish integrating kernel-level auditing code for IRIX and SOLARIS
8 lack of u_intXX_t types. There must be a better way. 9 (Gilbert.r.loomis@saic.com)
9 10
10- Cleanup configure.in 11- Support 64bit ints on machines that lack 'long long' and u_intXX_t
12 (tim@multitalents.net)
11 13
12- Complete Tru64 SIA support 14Documentation:
15- More and better
16
17- Install FAQ?
18
19- General FAQ on S/Key, TIS, RSA, RSA2, DSA, etc and suggestions on when it
20 would be best to use them.
21
22- Create a Documentation/ directory?
23
24Clean up configure/makefiles:
25- Clean up configure.in - There are a few double #defined variables
26 left to do. HAVE_LOGIN is one of them. Consider NOT looking for information
27 in wtmpx or utmpx or any of that stuff if it's not detected from the start
28
29- Fix Make functionality so that build from a different directory work.
30 (roth@feep.net)
31
32- Fails to compile when cross compile.
33 (vinschen@redhat.com)
34
35- Replace the whole u_intXX_t evilness in acconfig.h with something better???
36
37- Move all "openbsd-compat" files to it's own directory. Consider doing the
38 same with libssh. I don't think we need to split ssh, sshd, etc into their
39 own directory.
40 (mouring@eviladmin.org)
41
42- Fix up manpages to provide right paths to sshd_config, ssh_config, etc.
43
44Packaging:
45- Solaris: Update packaging scripts and build new sysv startup scripts
46 (gilbert.r.loomis@saic.com)
47
48- HP/UX: Provide DEPOT package scripts.
49 (gilbert.r.loomis@saic.com)
50
diff --git a/configure.in b/configure.in
index 4bbc95013..3b3fcae17 100644
--- a/configure.in
+++ b/configure.in
@@ -111,7 +111,7 @@ case "$host" in
111 AC_DEFINE(WITH_IRIX_ARRAY) 111 AC_DEFINE(WITH_IRIX_ARRAY)
112 AC_DEFINE(WITH_IRIX_PROJECT) 112 AC_DEFINE(WITH_IRIX_PROJECT)
113 AC_DEFINE(WITH_IRIX_AUDIT) 113 AC_DEFINE(WITH_IRIX_AUDIT)
114 AC_DEFINE(WITH_IRIX_JOBS) 114 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
115 no_libsocket=1 115 no_libsocket=1
116 no_libnsl=1 116 no_libnsl=1
117 AC_DEFINE(BROKEN_INET_NTOA) 117 AC_DEFINE(BROKEN_INET_NTOA)