diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 19 | ||||
-rw-r--r-- | openbsd-compat/fake-rfc2553.c | 6 | ||||
-rw-r--r-- | openbsd-compat/fake-rfc2553.h | 4 |
4 files changed, 29 insertions, 6 deletions
@@ -9,6 +9,10 @@ | |||
9 | Patch from david.haughton at ncr.com | 9 | Patch from david.haughton at ncr.com |
10 | - (dtucker) [configure.ac] Bug #659: uid swapping issues on IRIX 6. | 10 | - (dtucker) [configure.ac] Bug #659: uid swapping issues on IRIX 6. |
11 | Part of patch supplied by bugzilla-openssh at thewrittenword.com | 11 | Part of patch supplied by bugzilla-openssh at thewrittenword.com |
12 | - (dtucker) [configure.ac openbsd-compat/fake-rfc2553.c | ||
13 | openbsd-compat/fake-rfc2553.h] Bug #659: Test for and handle systems with | ||
14 | where gai_strerror is defined as "const char *". Part of patch supplied | ||
15 | by bugzilla-openssh at thewrittenword.com | ||
12 | 16 | ||
13 | 20030919 | 17 | 20030919 |
14 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; | 18 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; |
@@ -1145,4 +1149,4 @@ | |||
1145 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1149 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1146 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1150 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1147 | 1151 | ||
1148 | $Id: ChangeLog,v 1.3015 2003/09/22 01:58:21 dtucker Exp $ | 1152 | $Id: ChangeLog,v 1.3016 2003/09/22 02:08:23 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index b602e915b..7a4bd6ffc 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.161 2003/09/22 01:58:21 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.162 2003/09/22 02:08:23 dtucker Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -731,7 +731,7 @@ dnl Checks for library functions. Please keep in alphabetical order | |||
731 | AC_CHECK_FUNCS(\ | 731 | AC_CHECK_FUNCS(\ |
732 | arc4random __b64_ntop b64_ntop __b64_pton b64_pton \ | 732 | arc4random __b64_ntop b64_ntop __b64_pton b64_pton \ |
733 | bcopy bindresvport_sa clock fchmod fchown freeaddrinfo futimes \ | 733 | bcopy bindresvport_sa clock fchmod fchown freeaddrinfo futimes \ |
734 | gai_strerror getaddrinfo getcwd getgrouplist getnameinfo getopt \ | 734 | getaddrinfo getcwd getgrouplist getnameinfo getopt \ |
735 | getpeereid _getpty getrlimit getttyent glob inet_aton \ | 735 | getpeereid _getpty getrlimit getttyent glob inet_aton \ |
736 | inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \ | 736 | inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \ |
737 | mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \ | 737 | mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \ |
@@ -743,6 +743,21 @@ AC_CHECK_FUNCS(\ | |||
743 | truncate utimes vhangup vsnprintf waitpid \ | 743 | truncate utimes vhangup vsnprintf waitpid \ |
744 | ) | 744 | ) |
745 | 745 | ||
746 | # IRIX has a const char return value for gai_strerror() | ||
747 | AC_CHECK_FUNCS(gai_strerror,[ | ||
748 | AC_DEFINE(HAVE_GAI_STRERROR) | ||
749 | AC_TRY_COMPILE([ | ||
750 | #include <sys/types.h> | ||
751 | #include <sys/socket.h> | ||
752 | #include <netdb.h> | ||
753 | |||
754 | const char *gai_strerror(int);],[ | ||
755 | char *str; | ||
756 | |||
757 | str = gai_strerror(0);],[ | ||
758 | AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1, | ||
759 | [Define if gai_strerror() returns const char *])])]) | ||
760 | |||
746 | AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP)) | 761 | AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP)) |
747 | 762 | ||
748 | dnl Make sure prototypes are defined for these before using them. | 763 | dnl Make sure prototypes are defined for these before using them. |
diff --git a/openbsd-compat/fake-rfc2553.c b/openbsd-compat/fake-rfc2553.c index f44924836..0186b5300 100644 --- a/openbsd-compat/fake-rfc2553.c +++ b/openbsd-compat/fake-rfc2553.c | |||
@@ -37,7 +37,7 @@ | |||
37 | 37 | ||
38 | #include "includes.h" | 38 | #include "includes.h" |
39 | 39 | ||
40 | RCSID("$Id: fake-rfc2553.c,v 1.4 2003/06/13 22:43:23 djm Exp $"); | 40 | RCSID("$Id: fake-rfc2553.c,v 1.5 2003/09/22 02:08:23 dtucker Exp $"); |
41 | 41 | ||
42 | #ifndef HAVE_GETNAMEINFO | 42 | #ifndef HAVE_GETNAMEINFO |
43 | int getnameinfo(const struct sockaddr *sa, size_t salen, char *host, | 43 | int getnameinfo(const struct sockaddr *sa, size_t salen, char *host, |
@@ -77,7 +77,11 @@ int getnameinfo(const struct sockaddr *sa, size_t salen, char *host, | |||
77 | #endif /* !HAVE_GETNAMEINFO */ | 77 | #endif /* !HAVE_GETNAMEINFO */ |
78 | 78 | ||
79 | #ifndef HAVE_GAI_STRERROR | 79 | #ifndef HAVE_GAI_STRERROR |
80 | #ifdef HAVE_CONST_GAI_STRERROR_PROTO | ||
81 | const char * | ||
82 | #else | ||
80 | char * | 83 | char * |
84 | #endif | ||
81 | gai_strerror(int err) | 85 | gai_strerror(int err) |
82 | { | 86 | { |
83 | switch (err) { | 87 | switch (err) { |
diff --git a/openbsd-compat/fake-rfc2553.h b/openbsd-compat/fake-rfc2553.h index b70b928f8..bf727ceac 100644 --- a/openbsd-compat/fake-rfc2553.h +++ b/openbsd-compat/fake-rfc2553.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: fake-rfc2553.h,v 1.6 2003/08/29 16:59:52 mouring Exp $ */ | 1 | /* $Id: fake-rfc2553.h,v 1.7 2003/09/22 02:08:23 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (C) 2000-2003 Damien Miller. All rights reserved. | 4 | * Copyright (C) 2000-2003 Damien Miller. All rights reserved. |
@@ -137,7 +137,7 @@ int getaddrinfo(const char *, const char *, | |||
137 | const struct addrinfo *, struct addrinfo **); | 137 | const struct addrinfo *, struct addrinfo **); |
138 | #endif /* !HAVE_GETADDRINFO */ | 138 | #endif /* !HAVE_GETADDRINFO */ |
139 | 139 | ||
140 | #ifndef HAVE_GAI_STRERROR | 140 | #if !defined(HAVE_GAI_STRERROR) && !defined(HAVE_CONST_GAI_STRERROR_PROTO) |
141 | char *gai_strerror(int); | 141 | char *gai_strerror(int); |
142 | #endif /* !HAVE_GAI_STRERROR */ | 142 | #endif /* !HAVE_GAI_STRERROR */ |
143 | 143 | ||