Diff for /gforth/configure.in between versions 1.181 and 1.182

version 1.181, 2007/04/01 21:30:26 version 1.182, 2007/04/09 22:36:01
Line 86  dnl   --without-peephole disables peepho Line 86  dnl   --without-peephole disables peepho
 dnl                     but slower images.],  dnl                     but slower images.],
 dnl PEEPHOLE="$withval")  dnl PEEPHOLE="$withval")
   
 AC_ARG_ENABLE(ec,  AC_ARG_WITH(ec,
         AC_HELP_STRING([--enable-ec],          AC_HELP_STRING([--with-ec=<arch>],
                         [  Build gforth for systems without OS.]),                          [  Build gforth for systems without OS.]),
         ,enable_ec=no)  [if test "$withval" = "no"; then
 if test "$enable_ec" = "yes"; then  
   echo "defining standalone system"  
   AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])  
   EC_MODE="true"  
   EC="-ec"  
   engine2=""  
   engine_fast2=""  
   no_dynamic="-DNO_DYNAMIC"  
   image_i="image.i"  
   signals_o=""  
 else  
   echo "defining hosted system"    echo "defining hosted system"
   EC_MODE="false"    EC_MODE="false"
   EC=""    EC=""
Line 108  else Line 97  else
   engine_fast2="engine-fast2.o"    engine_fast2="engine-fast2.o"
   no_dynamic=""    no_dynamic=""
   image_i=""    image_i=""
   signals_o="signals.o"    signals_o="io.o signals.o"
 fi  else
     echo "defining standalone system (${withval})"
     AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])
     EC_MODE="true"
     EC="-ec"
     engine2=""
     engine_fast2=""
     no_dynamic="-DNO_DYNAMIC"
     image_i="image.i"
     if test "$withval" != "yes"; then
       signals_o="io-${withval}.o"
     else
       signals_o="io.o"
     fi
   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.])

Removed from v.1.181  
changed lines
  Added in v.1.182


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