[BACK]Return to make-configure CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

Diff for /OpenXM/src/ox_math/make-configure between version 1.1 and 1.4

version 1.1, 2000/02/08 21:14:01 version 1.4, 2005/02/09 07:13:49
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $OpenXM$  # $OpenXM: OpenXM/src/ox_math/make-configure,v 1.3 2002/08/22 17:04:25 ohara Exp $
 if [ ! -f ./.configure_done ]; then  
     if [ ! -x ./configure ]; then  if [ ! -f ./.configure_done ]; then
                 autoconf          case `uname` in
         fi      CYGWIN*)
     ./configure          cp -f Makefile.cygwin Makefile
           (cd mathlink; sh ./configure-cygwin)
           ;;
       *)
           if [ ! -x ./configure ]; then
                   autoconf
           fi
           ./configure --with-gmp
           ;;
       esac
 fi  fi
 touch .configure_done  touch .configure_done

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

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