[gforth] / gforth / configure.in  

gforth: gforth/configure.in

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

version 1.181, Sun Apr 1 21:30:26 2007 UTC version 1.182, Mon Apr 9 22:36:01 2007 UTC
Line 86 
Line 86 
 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 hosted system"
   echo "defining standalone system"    EC_MODE="false"
     EC=""
     engine2="engine2.o"
     engine_fast2="engine-fast2.o"
     no_dynamic=""
     image_i=""
     signals_o="io.o signals.o"
   else
     echo "defining standalone system (${withval})"
   AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])    AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])
   EC_MODE="true"    EC_MODE="true"
   EC="-ec"    EC="-ec"
Line 99 
Line 107 
   engine_fast2=""    engine_fast2=""
   no_dynamic="-DNO_DYNAMIC"    no_dynamic="-DNO_DYNAMIC"
   image_i="image.i"    image_i="image.i"
   signals_o=""    if test "$withval" != "yes"; then
       signals_o="io-${withval}.o"
 else  else
   echo "defining hosted system"      signals_o="io.o"
   EC_MODE="false"  
   EC=""  
   engine2="engine2.o"  
   engine_fast2="engine-fast2.o"  
   no_dynamic=""  
   image_i=""  
   signals_o="signals.o"  
 fi  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.])


Generate output suitable for use with a patch program
Legend:
Removed from v.1.181  
changed lines
  Added in v.1.182

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help