Diff for /gforth/configure.in between versions 1.214 and 1.215

version 1.214, 2008/01/23 20:42:25 version 1.215, 2008/02/10 16:46:55
Line 607  AC_MSG_RESULT($M4) Line 607  AC_MSG_RESULT($M4)
   
 # Find installed Gforth  # Find installed Gforth
 AC_MSG_CHECKING([for gforth])  AC_MSG_CHECKING([for gforth])
 GFORTH="`which gforth 2>/dev/null`"  GFORTH="`cd / && which gforth 2>/dev/null`"
 if test ! -z "$GFORTH"; then  GFORTH="$GFORTH -m4M --die-on-signal -i `gforth --debug -e bye 2>&1 |grep "Opened image file: "|sed 's/Opened image file: //'`" ; fi  if test -z "$GFORTH"; then
 AC_SUBST(GFORTH)    PREFORTH='echo "You need to configure with a gforth in \$PATH to build this part" && false'
 AC_DEFINE_UNQUOTED(GFORTH,"$GFORTH",[How to invoke gforth])  else
 AC_MSG_RESULT($GFORTH)    PREFORTH="$GFORTH -i `cd / && gforth --debug -e bye 2>&1 |grep "Opened image file: "|sed 's/Opened image file: //'`" ;
   fi
   AC_SUBST(PREFORTH)
   AC_DEFINE_UNQUOTED(PREFORTH,"$PREFORTH",[How to invoke the pre-installed gforth])
   AC_MSG_RESULT($PREFORTH)
   
 echo "machine='$machine'"  #echo "machine='$machine'"
   
 dnl AC_CHECK_PROG(asm_fs,asm.fs,arch/$machine/asm.fs,,$srcdir/arch/$machine)  dnl AC_CHECK_PROG(asm_fs,asm.fs,arch/$machine/asm.fs,,$srcdir/arch/$machine)
 AC_CHECK_FILE($srcdir/arch/$machine/asm.fs,[asm_fs=arch/$machine/asm.fs],)  AC_CHECK_FILE($srcdir/arch/$machine/asm.fs,[asm_fs=arch/$machine/asm.fs],)

Removed from v.1.214  
changed lines
  Added in v.1.215


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