[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Diff for /OpenXM_contrib2/asir2000/configure.in between version 1.47 and 1.48

version 1.47, 2016/08/24 05:33:58 version 1.48, 2016/09/22 07:15:33
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.46 2015/08/06 18:21:22 ohara Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.47 2016/08/24 05:33:58 ohara Exp $
   
 AC_INIT(asir,1.15)  AC_INIT(asir,1.15)
 AC_CONFIG_SRCDIR([LICENSE])  AC_CONFIG_SRCDIR([LICENSE])
Line 108  if test ${enable_plot:=no} != no ; then
Line 108  if test ${enable_plot:=no} != no ; then
     AC_DEFINE([DO_PLOT])      AC_DEFINE([DO_PLOT])
 fi  fi
 AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])  AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])
   
   GMPLIB="-lmpc -lmpfr -lgmp"
   AC_ARG_ENABLE([static_gmp],
   [  --enable-static-gmp     force to link statically with gmp. [[no]]],
   [enable_static_gmp=yes],[enable_static_gmp=no])
   if test ${enable_static_gmp:=no} != no ; then
       GMPLIB="libmpc.a libmpfr.a libgmp.a"
   fi
   AC_SUBST([GMPLIB])
   
 AC_ARG_ENABLE([interval],  AC_ARG_ENABLE([interval],
 [  --enable-interval       enable interval feature. [[no]]],  [  --enable-interval       enable interval feature. [[no]]],

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.48

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