Diff for /gforth/configure.in between versions 1.121 and 1.122

version 1.121, 2003/05/15 18:43:15 version 1.122, 2003/07/18 15:12:26
Line 44  AC_ARG_ENABLE(force-reg, Line 44  AC_ARG_ENABLE(force-reg,
 AC_DEFINE(FORCE_REG,,[Define if you want to use explicit register declarations for better performance or for more convenient CODE words (does not work with all GCC versions on all machines)]))  AC_DEFINE(FORCE_REG,,[Define if you want to use explicit register declarations for better performance or for more convenient CODE words (does not work with all GCC versions on all machines)]))
   
 AC_ARG_WITH(debug,  AC_ARG_WITH(debug,
 [  --with-debug    specifies option -g to compile with debug info  [  --with-debug           specifies option -g to compile with debug info
   --without-debug  omits the -g switch and creates smaller images on    --without-debug         omits the -g switch and creates smaller images on
                    machines where "strip" has problems with gcc style                            machines where "strip" has problems with gcc style
                    debugging informations.],                            debugging informations.],
 if test "$withval" = "yes"; then DEBUGFLAG=-g; fi)  if test "$withval" = "yes"; then DEBUGFLAG=-g; fi)
   
   AC_ARG_WITH(dynamic,
   [  --with-dynamic         Gforth defaults to dynamic super instructions,
     --without-dynamic       this may cause problems with newer GCCs and global
                             CSE, so if you see troubles, turn it off.],
   if test "$withval" = "no"; then no_dynamic_default=1; fi)
   
 dnl PEEPHOLE="yes"  dnl PEEPHOLE="yes"
 dnl AC_ARG_WITH(peephole,  dnl AC_ARG_WITH(peephole,
 dnl [  --with-peephole  Enable peephole optimization (default)  dnl [  --with-peephole  Enable peephole optimization (default)

Removed from v.1.121  
changed lines
  Added in v.1.122


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