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

version 1.167, 2007/01/21 17:29:53 version 1.169, 2007/02/09 17:53:54
Line 99  dnl PEEPHOLE="$withval") Line 99  dnl PEEPHOLE="$withval")
   
 AC_ARG_ENABLE(ec,  AC_ARG_ENABLE(ec,
         AC_HELP_STRING([--enable-ec],          AC_HELP_STRING([--enable-ec],
                         [ Build gforth for systems without OS.]),                          [  Build gforth for systems without OS.]),
         ,enable_ec=no)          ,enable_ec=no)
 if test "$enable_ec" = "yes"; then  if test "$enable_ec" = "yes"; then
   AC_DEFINE(HAVE_EC,,[Define if you want a Gforth without OS])    echo "defining standalone system"
     AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])
   EC_MODE="true"    EC_MODE="true"
 else  else
     echo "defining hosted system"
   EC_MODE="false"    EC_MODE="false"
 fi  fi
   
Line 150  test "$GCC" = "yes" || AC_MSG_ERROR(Gfor Line 152  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_SUBST(EC_MODE)
   
 AC_MSG_CHECKING(make type)  AC_MSG_CHECKING(make type)
Line 585  else Line 586  else
 fi  fi
   
 #check how to do asm(".skip 16")  #check how to do asm(".skip 16")
 echo "CFLAGS=$CFLAGS"  #echo "CFLAGS=$CFLAGS"
 echo "ac_link=$ac_link"  #echo "ac_link=$ac_link"
 AC_MSG_CHECKING([if and how we can waste code space])  AC_MSG_CHECKING([if and how we can waste code space])
 if test -z "$skipcode"; then  if test -z "$skipcode"; then
     skipcode=no      skipcode=no

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


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