diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2000-11-21 10:45:31 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2000-11-21 10:45:31 +0000 |
commit | 4a1d91646d4248c111f573e496cc0d10ba62e274 (patch) | |
tree | 117fc20398e78eacd6a2c7b7e5664757d4ee7650 | |
parent | 49a79c09762613f29601ef2470d13952168021be (diff) |
20001122
- (bal) Minor patch to ensure platforms lacking IRIX job limit supports
are compilable.
- (bal) Updated TODO as of 11/18/2000 with known things to resolve.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | TODO | 50 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 50 insertions, 7 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20001122 | ||
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 | |||
1 | 20001117 | 6 | 20001117 |
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> |
@@ -1,12 +1,50 @@ | |||
1 | - Replacement for setproctitle() | 1 | Programming: |
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 | 14 | Documentation: |
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 | |||
24 | Clean 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 | |||
44 | Packaging: | ||
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) |