From: mquinson Date: Thu, 9 Dec 2004 13:54:09 +0000 (+0000) Subject: fix a typo correctly [thanks Guillaume] X-Git-Tag: v3.3~4780 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7f0afd3fe62d010f9156dff3dc4482cc8a927086 fix a typo correctly [thanks Guillaume] git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@570 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/acmacro/gras_arch.m4 b/acmacro/gras_arch.m4 index 5258ca609b..64f4aadc68 100644 --- a/acmacro/gras_arch.m4 +++ b/acmacro/gras_arch.m4 @@ -44,7 +44,7 @@ dnl warning, this does not work with char (quite logical) dnl AC_DEFUN([GRAS_TWO_COMPLEMENT], [ -AC_MSG_CHECKING(whether $1 is two-compliment) +AC_MSG_CHECKING(whether $1 is two-complement) AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h" union { signed $1 testInt; @@ -55,11 +55,11 @@ union { return ((unsigned int)intTester.bytes[0] + (unsigned int)intTester.bytes[sizeof($1) - 1]) - 509; /* should be 0 */ ]])], dnl end of AC LANG PROGRAM -[two_compliment=yes],[two_compliment=no] )dnl end of AC COMPILE IFELSE +[two_complement=yes],[two_complement=no] )dnl end of AC COMPILE IFELSE -AC_MSG_RESULT($two_compliment) -if test x$two_compliment != xyes ; then - AC_MSG_ERROR([GRAS works only two-compliment integers (yet)]) +AC_MSG_RESULT($two_complement) +if test x$two_complement != xyes ; then + AC_MSG_ERROR([GRAS works only two-complement integers (yet)]) fi ]) @@ -133,7 +133,7 @@ AC_DEFUN([GRAS_ARCH], [ # Check for the architecture AC_C_BIGENDIAN(endian=1,endian=0,AC_MSG_ERROR([GRAS works only for little or big endian systems (yet)])) -dnl Make sure we don't run on a non-two-compliment arch, since we dunno convert them +dnl Make sure we don't run on a non-two-complement arch, since we dunno convert them GRAS_TWO_COMPLEMENT(int) AC_DEFINE_UNQUOTED(GRAS_BIGENDIAN,$endian,[define if big endian])