diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -8,6 +8,8 @@ | |||
8 | Bug #670: add strtoul() to openbsd-compat for platforms lacking it. ok djm@ | 8 | Bug #670: add strtoul() to openbsd-compat for platforms lacking it. ok djm@ |
9 | - (dtucker) [configure.ac] Bug #715: Set BROKEN_SETREUID and BROKEN_SETREGID | 9 | - (dtucker) [configure.ac] Bug #715: Set BROKEN_SETREUID and BROKEN_SETREGID |
10 | on Reliant Unix. Patch from Robert.Dahlem at siemens.com. | 10 | on Reliant Unix. Patch from Robert.Dahlem at siemens.com. |
11 | - (dtucker) [configure.ac] Bug #710: Check for dlsym() in libdl on | ||
12 | Reliant Unix. Based on patch from Robert.Dahlem at siemens.com. | ||
11 | 13 | ||
12 | 20031003 | 14 | 20031003 |
13 | - (dtucker) OpenBSD CVS Sync | 15 | - (dtucker) OpenBSD CVS Sync |
@@ -1290,4 +1292,4 @@ | |||
1290 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1292 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1291 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1293 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1292 | 1294 | ||
1293 | $Id: ChangeLog,v 1.3062 2003/10/07 08:37:11 dtucker Exp $ | 1295 | $Id: ChangeLog,v 1.3063 2003/10/07 10:35:57 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index 45d21573f..44808f7e5 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.171 2003/10/07 08:37:11 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.172 2003/10/07 10:35:57 dtucker Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -297,6 +297,7 @@ mips-sony-bsd|mips-sony-newsos4) | |||
297 | CPPFLAGS="$CPPFLAGS -I/usr/local/include" | 297 | CPPFLAGS="$CPPFLAGS -I/usr/local/include" |
298 | # /usr/ucblib MUST NOT be searched on ReliantUNIX | 298 | # /usr/ucblib MUST NOT be searched on ReliantUNIX |
299 | LDFLAGS="$LDFLAGS -L/usr/local/lib" | 299 | LDFLAGS="$LDFLAGS -L/usr/local/lib" |
300 | AC_CHECK_LIB(dl, dlsym, ,) | ||
300 | IPADDR_IN_DISPLAY=yes | 301 | IPADDR_IN_DISPLAY=yes |
301 | AC_DEFINE(USE_PIPES) | 302 | AC_DEFINE(USE_PIPES) |
302 | AC_DEFINE(IP_TOS_IS_BROKEN) | 303 | AC_DEFINE(IP_TOS_IS_BROKEN) |