version 1.6, 2003/03/07 08:49:12 |
version 1.11, 2003/03/17 14:33:47 |
|
|
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.5 2003/03/07 05:40:16 noro Exp $ |
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.10 2003/03/16 18:37:56 ohara Exp $ |
|
|
AC_INIT([LICENSE]) |
AC_INIT([LICENSE]) |
AC_PREREQ(2.53) |
AC_PREREQ(2.53) |
AM_INIT_AUTOMAKE(asir, 20030307) |
AM_INIT_AUTOMAKE(asir, 20030307) |
|
AM_MAINTAINER_MODE |
|
|
AC_CANONICAL_SYSTEM |
AC_CANONICAL_SYSTEM |
|
|
|
|
AC_SUBST([PARIINC]) |
AC_SUBST([PARIINC]) |
AC_SUBST([PARILIB]) |
AC_SUBST([PARILIB]) |
|
|
|
AC_CHECK_TYPES([unsigned long long]) |
AC_CHECK_SIZEOF(long) |
AC_CHECK_SIZEOF(long) |
if test SIZEOF_LONG = 8; then |
if test SIZEOF_LONG = 8; then |
AC_DEFINE([LONG_IS_64BIT]) |
AC_DEFINE([LONG_IS_64BIT]) |
|
|
AC_DEFINE([LONG_IS_32BIT]) |
AC_DEFINE([LONG_IS_32BIT]) |
fi |
fi |
if test "${no_x}" != yes ; then |
if test "${no_x}" != yes ; then |
|
if test -f "${x_libraries}/libXpm.a" ; then |
|
XPMLIB="-lXpm" |
|
fi |
AC_ARG_ENABLE([plot], |
AC_ARG_ENABLE([plot], |
[ --enable-plot enable plot feature. [[no]]], |
[ --enable-plot enable plot feature. [[no]]], |
[enable_plot=yes],[enable_plot=no]) |
[enable_plot=yes],[enable_plot=no]) |
fi |
fi |
|
AC_SUBST([XPMLIB]) |
|
|
if test ${enable_plot:=no} != no ; then |
if test ${enable_plot:=no} != no ; then |
libasir_postfix=${libasir_postfix}_X |
libasir_postfix=${libasir_postfix}_X |
Line 142 sparc_v9_obj="sparc-2.o asm5-2.o edr-2.o" |
|
Line 148 sparc_v9_obj="sparc-2.o asm5-2.o edr-2.o" |
|
generic_obj=asmalpha.o |
generic_obj=asmalpha.o |
|
|
case "${host}" in |
case "${host}" in |
[i[3-6]86-*-freebsd[3-9].*]|[i[3-6]86-*-linux*]) |
[i[3-6]86-*-freebsd[3-9].*]) |
asm_obj="${i386_elf_obj}" |
asm_obj="${i386_elf_obj}" |
;; |
;; |
|
[i[3-6]86-*-linux*]|x86-*-linux*) |
|
asm_obj="${i386_elf_obj}" |
|
AC_DEFINE([BSD_SOURCE]) |
|
;; |
*-*-cygwin*) |
*-*-cygwin*) |
asm_obj="${i386_aout_obj}" |
asm_obj="${i386_aout_obj}" |
;; |
;; |
Line 159 sparc-sun-solaris2.*) |
|
Line 169 sparc-sun-solaris2.*) |
|
powerpc-apple-darwin*) |
powerpc-apple-darwin*) |
asm_obj="${generic_obj}" |
asm_obj="${generic_obj}" |
AC_DEFINE([__DARWIN__]) |
AC_DEFINE([__DARWIN__]) |
|
;; |
|
arm*-*-linux*) |
|
asm_obj="${generic_obj}" |
|
if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then |
|
CFLAGS="${CFLAGS} -fsigned-char" |
|
fi |
;; |
;; |
*) |
*) |
asm_obj="${generic_obj}" |
asm_obj="${generic_obj}" |