Diff for /gforth/Attic/configure between versions 1.1 and 1.3

version 1.1, 1994/11/11 16:10:11 version 1.3, 1994/11/17 15:53:05
Line 84  host= Line 84  host=
 build=  build=
 name1=  name1=
 name2=  name2=
   debugging=-g
   
 for arg in $*;  for arg in $*;
 do  do
Line 171  do Line 172  do
    | --direct-thre | --direct-thr | --direct-th | --direct-t | --direct- \     | --direct-thre | --direct-thr | --direct-th | --direct-t | --direct- \
    | --direct | --direc | --dire | --dir | --di | --d)     | --direct | --direc | --dire | --dir | --di | --d)
     threading=-DDIRECT_THREADED      threading=-DDIRECT_THREADED
         ;;     ;;
        -without-debug | --without-debu | --without-deb | --without-de \
      | --without-d)
       debugging=
      ;;
      -with-* | --with-*) ;; #ignored       -with-* | --with-*) ;; #ignored
      -without-* | --without-*) ;; #ignored       -without-* | --without-*) ;; #ignored
      -enable-* | --enable-*) ;; #ignored       -enable-* | --enable-*) ;; #ignored
Line 387  else Line 392  else
         ln -s kernl32l.fi gforth.fi          ln -s kernl32l.fi gforth.fi
 fi  fi
   
 sed -e "s|^XCFLAGS[     ]*=*\(.*\)$|XCFLAGS = \1 $flags|" \  if [ x$bigendian = x1 ]
     -e "s|^XDEFINES[    ]*=*\(.*\)$|XDEFINES = \1 $defines|" \  then
     -e "s|^OBJECTS[     ]*=*\(.*\)$|OBJECTS = \1 $extra_obs|" \     kernalswap='s|kernl32l.fi kernl32b.fi|kernl32b.fi kernl32l.fi|'
      kernalexec='-e'
   fi
   
   sed -e "s|^XCFLAGS[      ]*=*\(.*\)$|XCFLAGS    = \1 $flags|" \
       -e "s|^XDEFINES[     ]*=*\(.*\)$|XDEFINES   = \1 $defines|" \
       -e "s|^OBJECTS[      ]*=*\(.*\)$|OBJECTS    = \1 $extra_obs|" \
       -e "s|^CFLAGS[       ]*=*\(.*\)$|CFLAGS     = $debugging\1|" \
       -e "s|^LDFLAGS[      ]*=*\(.*\)$|LDFLAGS    = $debugging\1|" \
       $kernalexec "$kernalswap" \
     Makefile.in > Makefile      Makefile.in > Makefile
   
 exit 0  exit 0

Removed from v.1.1  
changed lines
  Added in v.1.3


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