=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.44 retrieving revision 1.48 diff -u -p -r1.44 -r1.48 --- OpenXM_contrib2/asir2000/configure.in 2015/08/04 06:57:51 1.44 +++ OpenXM_contrib2/asir2000/configure.in 2016/09/22 07:15:33 1.48 @@ -1,4 +1,4 @@ -dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.43 2015/08/04 06:46:29 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_CONFIG_SRCDIR([LICENSE]) @@ -109,6 +109,15 @@ if test ${enable_plot:=no} != no ; then fi 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], [ --enable-interval enable interval feature. [[no]]], [enable_interval=${enableval}],[enable_interval=no]) @@ -213,13 +222,19 @@ arm*-*-linux*) CFLAGS="${CFLAGS} -fsigned-char" fi ;; +*-*-mingw*) + WSLIB="-lws2_32" + asm_obj="${generic_obj}" + ;; *) asm_obj="${generic_obj}" ;; esac AC_SUBST([asm_obj]) +AC_SUBST([WSLIB]) +AC_CHECK_FUNCS(sigaction) dnl for Solaris 2.x AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)]) AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])