From: yoe Date: Wed, 27 Dec 2006 18:48:19 +0000 (+0000) Subject: r228: Fix detection of host system, patch by Mike Frysinger X-Git-Url: http://git.alex.org.uk r228: Fix detection of host system, patch by Mike Frysinger --- diff --git a/configure.ac b/configure.ac index 1de1bdf..4a6d9f0 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,7 @@ fi AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL +AC_CANONICAL_HOST AC_C_BIGENDIAN AC_C_INLINE AC_C_CONST @@ -60,8 +61,8 @@ AC_CHECK_FUNCS([llseek alarm gethostbyname inet_ntoa memset socket strerror strs AC_FUNC_FORK AC_FUNC_SETVBUF_REVERSED AC_MSG_CHECKING(whether client should be built) -case "`uname`" in - *Linux*) sbin_PROGRAMS=nbd-client +case $host_os in + linux*) sbin_PROGRAMS=nbd-client AC_MSG_RESULT(yes) ;; *) AC_MSG_RESULT(no) ;;