Diff for /gforth/configure.in between versions 1.166 and 1.167

version 1.166, 2007/01/10 12:43:29 version 1.167, 2007/01/21 17:29:53
Line 97  dnl   --without-peephole disables peepho Line 97  dnl   --without-peephole disables peepho
 dnl                     but slower images.],  dnl                     but slower images.],
 dnl PEEPHOLE="$withval")  dnl PEEPHOLE="$withval")
   
   AC_ARG_ENABLE(ec,
           AC_HELP_STRING([--enable-ec],
                           [ Build gforth for systems without OS.]),
           ,enable_ec=no)
   if test "$enable_ec" = "yes"; then
     AC_DEFINE(HAVE_EC,,[Define if you want a Gforth without OS])
     EC_MODE="true"
   else
     EC_MODE="false"
   fi
   
 #variables mentioned in INSTALL  #variables mentioned in INSTALL
 AC_ARG_VAR(CC, [The C compiler (must support GNU C 2.x); gcc-2.95 recommended.])  AC_ARG_VAR(CC, [The C compiler (must support GNU C 2.x); gcc-2.95 recommended.])
 AC_ARG_VAR(FORTHSIZES, [Gforth command line options for the default stack and dictionary sizes (see INSTALL).])  AC_ARG_VAR(FORTHSIZES, [Gforth command line options for the default stack and dictionary sizes (see INSTALL).])
Line 139  test "$GCC" = "yes" || AC_MSG_ERROR(Gfor Line 150  test "$GCC" = "yes" || AC_MSG_ERROR(Gfor
   
 AC_SUBST(CC)  AC_SUBST(CC)
 AC_SUBST(DEBUGFLAG)  AC_SUBST(DEBUGFLAG)
   AC_SUBST(HAVE_EC)
   AC_SUBST(EC_MODE)
   
 AC_MSG_CHECKING(make type)  AC_MSG_CHECKING(make type)
 make_type=`make -v 2>&1|grep 'ake'|sed 's/ake .*/ake/'`  make_type=`make -v 2>&1|grep 'ake'|sed 's/ake .*/ake/'`

Removed from v.1.166  
changed lines
  Added in v.1.167


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>