diff options
author | Tim Rice <tim@multitalents.net> | 2003-09-15 22:48:15 -0700 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2003-09-15 22:48:15 -0700 |
commit | 5502e5895d0641991e2ff1f530221b928ca8edca (patch) | |
tree | 8b5ee33f413fe6d14ea7507a4f24d8df936a1716 | |
parent | 315212b531d957ca6da1b39dbeab296acae3f92f (diff) |
[configure.ac] Fix portability issues.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 6 insertions, 5 deletions
@@ -9,6 +9,7 @@ | |||
9 | do not expand buffer before attempting to reallocate it; markus ok | 9 | do not expand buffer before attempting to reallocate it; markus ok |
10 | - (djm) Crank spec versions | 10 | - (djm) Crank spec versions |
11 | - (djm) Release 3.7p1 | 11 | - (djm) Release 3.7p1 |
12 | - (tim) [configure.ac] Fix portability issues. | ||
12 | 13 | ||
13 | 20030914 | 14 | 20030914 |
14 | - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing | 15 | - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing |
@@ -1105,4 +1106,4 @@ | |||
1105 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1106 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1106 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1107 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1107 | 1108 | ||
1108 | $Id: ChangeLog,v 1.2994.2.2 2003/09/16 04:08:37 djm Exp $ | 1109 | $Id: ChangeLog,v 1.2994.2.3 2003/09/16 05:48:15 tim Exp $ |
diff --git a/configure.ac b/configure.ac index ab630115b..7ddcb777f 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.154 2003/09/16 01:52:19 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.154.2.1 2003/09/16 05:48:15 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -2205,7 +2205,7 @@ AC_ARG_WITH(default-path, | |||
2205 | --with-default-path=PATH has no effect on this system. | 2205 | --with-default-path=PATH has no effect on this system. |
2206 | Edit /etc/login.conf instead.]) | 2206 | Edit /etc/login.conf instead.]) |
2207 | elif test "x$withval" != "xno" ; then | 2207 | elif test "x$withval" != "xno" ; then |
2208 | if ! test -z "$external_path_file" ; then | 2208 | if test ! -z "$external_path_file" ; then |
2209 | AC_MSG_WARN([ | 2209 | AC_MSG_WARN([ |
2210 | --with-default-path=PATH will only be used if PATH is not defined in | 2210 | --with-default-path=PATH will only be used if PATH is not defined in |
2211 | $external_path_file .]) | 2211 | $external_path_file .]) |
@@ -2217,7 +2217,7 @@ $external_path_file .]) | |||
2217 | [ if test "x$external_path_file" = "x/etc/login.conf" ; then | 2217 | [ if test "x$external_path_file" = "x/etc/login.conf" ; then |
2218 | AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf]) | 2218 | AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf]) |
2219 | else | 2219 | else |
2220 | if ! test -z "$external_path_file" ; then | 2220 | if test ! -z "$external_path_file" ; then |
2221 | AC_MSG_WARN([ | 2221 | AC_MSG_WARN([ |
2222 | If PATH is defined in $external_path_file, ensure the path to scp is included, | 2222 | If PATH is defined in $external_path_file, ensure the path to scp is included, |
2223 | otherwise scp will not work.]) | 2223 | otherwise scp will not work.]) |
@@ -2652,7 +2652,7 @@ echo " At runtime, sshd will use the path defined in $external_path_file" | |||
2652 | echo " Make sure the path to scp is present, otherwise scp will not work" | 2652 | echo " Make sure the path to scp is present, otherwise scp will not work" |
2653 | else | 2653 | else |
2654 | echo " sshd default user PATH: $I" | 2654 | echo " sshd default user PATH: $I" |
2655 | if ! test -z "$external_path_file"; then | 2655 | if test ! -z "$external_path_file"; then |
2656 | echo " (If PATH is set in $external_path_file it will be used instead. If" | 2656 | echo " (If PATH is set in $external_path_file it will be used instead. If" |
2657 | echo " used, ensure the path to scp is present, otherwise scp will not work.)" | 2657 | echo " used, ensure the path to scp is present, otherwise scp will not work.)" |
2658 | fi | 2658 | fi |