=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.47 retrieving revision 1.52 diff -u -p -r1.47 -r1.52 --- OpenXM_contrib2/asir2000/configure.in 2016/08/24 05:33:58 1.47 +++ OpenXM_contrib2/asir2000/configure.in 2019/11/12 10:52:04 1.52 @@ -1,4 +1,4 @@ -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.51 2019/03/26 08:10:13 ohara Exp $ AC_INIT(asir,1.15) AC_CONFIG_SRCDIR([LICENSE]) @@ -109,6 +109,15 @@ if test ${enable_plot:=no} != no ; then fi AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes]) +GMPLIB="-L${libdir} -lmpfi -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='${libdir}/libmpc.a ${libdir}/libmpfr.a ${libdir}/libgmp.a' +fi +AC_SUBST([GMPLIB]) + AC_ARG_ENABLE([interval], [ --enable-interval enable interval feature. [[no]]], [enable_interval=${enableval}],[enable_interval=no]) @@ -230,5 +239,5 @@ dnl for Solaris 2.x AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)]) AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)]) -AC_CONFIG_FILES([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile]) +AC_CONFIG_FILES([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile asir2000]) AC_OUTPUT