[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.42 and 1.53

version 1.42, 2013/02/12 09:40:41 version 1.53, 2021/03/24 18:27:09
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.41 2012/12/17 07:20:44 noro Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.52 2019/11/12 10:52:04 kondoh Exp $
   
 AC_INIT  AC_INIT(asir,1.15)
 AC_CONFIG_SRCDIR([LICENSE])  AC_CONFIG_SRCDIR([LICENSE])
 AC_PREREQ(2.61)  AC_PREREQ(2.69)
 AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(asir, 20030307)  AM_INIT_AUTOMAKE
 AM_MAINTAINER_MODE  AM_MAINTAINER_MODE
   
 dnl AM_PROG_AS  dnl AM_PROG_AS
Line 34  elif test `basename ./"${CC}"` = "icc" ; then
Line 34  elif test `basename ./"${CC}"` = "icc" ; then
     CFLAGS="-g -O"      CFLAGS="-g -O"
 fi  fi
   
 GC=gc-7.2  GC=gc-7.4.18
 AC_ARG_WITH([asir-gc],  AC_ARG_WITH([asir-gc],
 [  --with-asir-gc          modify Boehm's GC [[yes]]],  [  --with-asir-gc          modify Boehm's GC [[yes]]],
 [with_asir_gc=${withval}],[with_asir_gc=yes])  [with_asir_gc=${withval}],[with_asir_gc=yes])
Line 109  if test ${enable_plot:=no} != no ; then
Line 109  if test ${enable_plot:=no} != no ; then
 fi  fi
 AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])  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],  AC_ARG_ENABLE([interval],
 [  --enable-interval       enable interval feature. [[no]]],  [  --enable-interval       enable interval feature. [[no]]],
 [enable_interval=${enableval}],[enable_interval=no])  [enable_interval=${enableval}],[enable_interval=no])
Line 180  case "${host}" in
Line 189  case "${host}" in
     asm_obj="${i386_elf_obj}"      asm_obj="${i386_elf_obj}"
     AC_DEFINE([_BSD_SOURCE])      AC_DEFINE([_BSD_SOURCE])
     ;;      ;;
 *-*-cygwin*)  [i[3-6]86-*-cygwin*]|x86-*-cygwin*)
     asm_obj="${i386_aout_obj}"      asm_obj="${i386_aout_obj}"
     ;;      ;;
 [i[3-6]86-*-interix*])  [i[3-6]86-*-interix*])
Line 213  arm*-*-linux*)
Line 222  arm*-*-linux*)
         CFLAGS="${CFLAGS} -fsigned-char"          CFLAGS="${CFLAGS} -fsigned-char"
     fi      fi
     ;;      ;;
   *-*-mingw*)
           WSLIB="-lws2_32"
       asm_obj="${generic_obj}"
       ;;
 *)  *)
     asm_obj="${generic_obj}"      asm_obj="${generic_obj}"
     ;;      ;;
 esac  esac
   
 AC_SUBST([asm_obj])  AC_SUBST([asm_obj])
   AC_SUBST([WSLIB])
   
   AC_CHECK_FUNCS(sigaction)
 dnl for Solaris 2.x  dnl for Solaris 2.x
 AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])  AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])
 AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])  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  AC_OUTPUT

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.53

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