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

File: [local] / OpenXM / src / ox_math / make-configure (download)

Revision 1.4, Wed Feb 9 07:13:49 2005 UTC (19 years, 3 months ago) by ohara
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9
Changes since 1.3: +2 -2 lines

configure uses the option --with-gmp.

#!/bin/sh
# $OpenXM: OpenXM/src/ox_math/make-configure,v 1.4 2005/02/09 07:13:49 ohara Exp $

if [ ! -f ./.configure_done ]; then
	case `uname` in
    CYGWIN*)
        cp -f Makefile.cygwin Makefile
        (cd mathlink; sh ./configure-cygwin)
        ;;
    *)
        if [ ! -x ./configure ]; then
    		autoconf
      	fi
        ./configure --with-gmp
    	;;
    esac
fi
touch .configure_done