summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-09-21 21:38:11 -0700
committerTim Rice <tim@multitalents.net>2003-09-21 21:38:11 -0700
commit480ef8ddae5c5795859752c15f898271c019eefc (patch)
treeeeb604d3dc122e9e7272b28c7e0dbcc2c202d9bf
parent7a74c6b428f7126fcbd21b12a0a1a5a3bd2205ae (diff)
[configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
Report by distler AT golem ph utexas edu.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6152aaa71..7351ded5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
120030923 120030923
2 - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree 2 - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree
3 builds. Portability corrections from tim@. 3 builds. Portability corrections from tim@.
4 - (dtucker) [configure.ac] Bug #655: uid swapping issues on Mac OS X. 4 - (dtucker) [configure.ac] Bug #665: uid swapping issues on Mac OS X.
5 Patch from max at quendi.de. 5 Patch from max at quendi.de.
6 - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi. 6 - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi.
7 - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64. 7 - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64.
@@ -25,6 +25,8 @@
25 - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or 25 - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or
26 higher. 26 higher.
27 - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ 27 - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/
28 - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
29 Report by distler AT golem ph utexas edu.
28 30
2920030919 3120030919
30 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; 32 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@@ -1161,4 +1163,4 @@
1161 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1163 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1162 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1164 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1163 1165
1164$Id: ChangeLog,v 1.3021 2003/09/22 04:00:59 tim Exp $ 1166$Id: ChangeLog,v 1.3022 2003/09/22 04:38:11 tim Exp $
diff --git a/configure.ac b/configure.ac
index fedad3b07..ac1a4d9f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.163 2003/09/22 04:01:00 tim Exp $ 1# $Id: configure.ac,v 1.164 2003/09/22 04:38:11 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -131,10 +131,10 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
131}], [AC_MSG_RESULT(working)], 131}], [AC_MSG_RESULT(working)],
132 [AC_MSG_RESULT(buggy) 132 [AC_MSG_RESULT(buggy)
133 AC_DEFINE(BROKEN_GETADDRINFO)], 133 AC_DEFINE(BROKEN_GETADDRINFO)],
134 [AC_MSG_RESULT(assume it is working)])
134 AC_DEFINE(SETEUID_BREAKS_SETUID) 135 AC_DEFINE(SETEUID_BREAKS_SETUID)
135 AC_DEFINE(BROKEN_SETREUID) 136 AC_DEFINE(BROKEN_SETREUID)
136 AC_DEFINE(BROKEN_SETREGID) 137 AC_DEFINE(BROKEN_SETREGID)
137 [AC_MSG_RESULT(assume it is working)])
138 ;; 138 ;;
139*-*-hpux10.26) 139*-*-hpux10.26)
140 if test -z "$GCC"; then 140 if test -z "$GCC"; then