[BACK]Return to configure.ac CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir-gc

File: [local] / OpenXM_contrib2 / asir-gc / configure.ac (download)

Revision 1.3, Sat Oct 2 11:42:29 2021 UTC (2 years, 6 months ago) by ohara
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +2 -2 lines

Fixed for building static library.

dnl $OpenXM: OpenXM_contrib2/asir-gc/configure.ac,v 1.3 2021/10/02 11:42:29 ohara Exp $

AC_INIT(asir-gc,1.0)
AC_CONFIG_SRCDIR([LICENSE])
AC_PREREQ(2.69)
AC_CANONICAL_HOST

AC_PROG_INSTALL
AC_PROG_MKDIR_P

GC_CONFIGURE_ARGS="--prefix=${prefix} --disable-threads --enable-large-config --enable-static"
if test -n "${host_alias}" ; then
    GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}"
fi
AC_ARG_WITH([distdir],
[  --with-distdir          specify the spool for fetching. [[no]]],
[with_distdir=${withval}],[with_distdir=no])
GC_DISTDIR='${prefix}/../OpenXM_dist'
if test ${with_distdir:=no} != no -a ${with_distdir} != yes ; then
    GC_DISTDIR=${with_distdir}
fi   

AC_SUBST([GC_CONFIGURE_ARGS])
AC_SUBST([GC_DISTDIR])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT