From: Paul Mackerras Date: Thu, 27 Jun 1996 01:46:13 +0000 (+0000) Subject: Fix echo commands for Solaris systems. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/e260d7fb48763ca7e4bd19e1c97d993771ffcb53 Fix echo commands for Solaris systems. --- diff --git a/configure.in b/configure.in index 1d95fb8f..0d34b4a6 100644 --- a/configure.in +++ b/configure.in @@ -29,7 +29,7 @@ AC_TYPE_SIZE_T AC_TYPE_PID_T AC_STRUCT_ST_RDEV -echo -n "checking for errno in errno.h... " +echo $ac_n "checking for errno in errno.h... $ac_c" AC_TRY_COMPILE([#include ],[int i = errno], echo yes; AC_DEFINE(HAVE_ERRNO_DECL), echo no) @@ -41,7 +41,7 @@ AC_CHECK_FUNCS(waitpid strtok pipe getcwd mkdir strdup strerror chown chmod mkno AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink utime utimes) AC_CHECK_FUNCS(memmove getopt_long) -echo -n "checking for working fnmatch... " +echo $ac_n "checking for working fnmatch... $ac_c" AC_TRY_RUN([#include main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }], echo yes;AC_DEFINE(HAVE_FNMATCH),