Diff for /gforth/configure.in between versions 1.292 and 1.293

version 1.292, 2011/11/16 23:15:05 version 1.293, 2011/11/17 18:45:52
Line 990  GFORTH="`cd / && which gforth 2>/dev/nul Line 990  GFORTH="`cd / && which gforth 2>/dev/nul
 (cd / && $GFORTH -e bye >/dev/null 2>/dev/null  && test "$srcdir" = ".") || GFORTH=""  (cd / && $GFORTH -e bye >/dev/null 2>/dev/null  && test "$srcdir" = ".") || GFORTH=""
 if test -z "$GFORTH"; then  if test -z "$GFORTH"; then
   PREFORTH='echo "You need to configure with a gforth in \$PATH to build this part" && false'    PREFORTH='echo "You need to configure with a gforth in \$PATH to build this part" && false'
   KFORTH='echo "You need to configure with a gforth in \$PATH to build this part" && false'    GFORTHKER='echo "You need to configure with a gforth in \$PATH to build this part" && false'
   kernel_anti_dependence=''    kernel_anti_dependence=''
 else  else
   GFORTH_FI=`cd / && $GFORTH --debug -e bye 2>&1 |grep "Opened image file: "|sed 's/Opened image file: //'`    GFORTH_FI=`cd / && $GFORTH --debug -e bye 2>&1 |grep "Opened image file: "|sed 's/Opened image file: //'`
   PREFORTH="$GFORTH -i $GFORTH_FI" ;    PREFORTH="$GFORTH -i $GFORTH_FI" ;
   KERNLX_FI=`echo $GFORTH_FI | sed -e s/lib/share/g -e s/gforth.fi/kernl*.fi/g`    KERNLX_FI=`echo $GFORTH_FI | sed -e s/lib/share/g -e s/gforth.fi/kernl*.fi/g`
   KFORTH="$GFORTH -i `echo $KERNLX_FI`" ;    GFORTHKER="$GFORTH -i `echo $KERNLX_FI`" ;
   kernel_anti_dependence='$(kernel_fi)'    kernel_anti_dependence='$(kernel_fi)'
 fi  fi
 AC_SUBST(PREFORTH)  AC_SUBST(PREFORTH)
 AC_SUBST(KFORTH)  AC_SUBST(GFORTHKER)
 AC_SUBST(kernel_anti_dependence)  AC_SUBST(kernel_anti_dependence)
 AC_MSG_RESULT($PREFORTH)  AC_MSG_RESULT($PREFORTH)
   
Line 1018  vmgen Line 1018  vmgen
 machpc.fs  machpc.fs
 envos.fs  envos.fs
 preforth  preforth
 kforth  gforthker
 engine/Makefile  engine/Makefile
 engine/libcc.h  engine/libcc.h
 doc/version.texi  doc/version.texi
Line 1028  chmod +x gforthmi Line 1028  chmod +x gforthmi
 chmod +x vmgen  chmod +x vmgen
 chmod +x build-ec  chmod +x build-ec
 chmod +x preforth  chmod +x preforth
 chmod +x kforth  chmod +x gforthker
 test -d kernel||mkdir kernel  test -d kernel||mkdir kernel
 if test $srcdir != "."; then ln -sf $srcdir/gforth.el .; fi  if test $srcdir != "."; then ln -sf $srcdir/gforth.el .; fi
 $srcdir/mkinstalldirs include/gforth/$PACKAGE_VERSION  $srcdir/mkinstalldirs include/gforth/$PACKAGE_VERSION

Removed from v.1.292  
changed lines
  Added in v.1.293


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