From b925b4b82fe60bb764e23a0115c9de73b8e0b816 Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Mon, 15 Sep 2003 22:40:49 -0700 Subject: [configure.ac] Fix portability issues. --- ChangeLog | 3 ++- configure.ac | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 93d88a511..6d772746a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ - deraadt@cvs.openbsd.org 2003/09/16 03:03:47 [buffer.c] do not expand buffer before attempting to reallocate it; markus ok + - (tim) [configure.ac] Fix portability issues. 20030914 - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing @@ -1103,4 +1104,4 @@ - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. Report from murple@murple.net, diagnosis from dtucker@zip.com.au -$Id: ChangeLog,v 1.2994 2003/09/16 03:31:03 mouring Exp $ +$Id: ChangeLog,v 1.2995 2003/09/16 05:40:49 tim Exp $ diff --git a/configure.ac b/configure.ac index ab630115b..59a2f55f6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.154 2003/09/16 01:52:19 dtucker Exp $ +# $Id: configure.ac,v 1.155 2003/09/16 05:40:49 tim Exp $ AC_INIT AC_CONFIG_SRCDIR([ssh.c]) @@ -2205,7 +2205,7 @@ AC_ARG_WITH(default-path, --with-default-path=PATH has no effect on this system. Edit /etc/login.conf instead.]) elif test "x$withval" != "xno" ; then - if ! test -z "$external_path_file" ; then + if test ! -z "$external_path_file" ; then AC_MSG_WARN([ --with-default-path=PATH will only be used if PATH is not defined in $external_path_file .]) @@ -2217,7 +2217,7 @@ $external_path_file .]) [ if test "x$external_path_file" = "x/etc/login.conf" ; then AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf]) else - if ! test -z "$external_path_file" ; then + if test ! -z "$external_path_file" ; then AC_MSG_WARN([ If PATH is defined in $external_path_file, ensure the path to scp is included, otherwise scp will not work.]) @@ -2652,7 +2652,7 @@ echo " At runtime, sshd will use the path defined in $external_path_file" echo " Make sure the path to scp is present, otherwise scp will not work" else echo " sshd default user PATH: $I" - if ! test -z "$external_path_file"; then + if test ! -z "$external_path_file"; then echo " (If PATH is set in $external_path_file it will be used instead. If" echo " used, ensure the path to scp is present, otherwise scp will not work.)" fi -- cgit v1.2.3