|
Revision 1517, 1.3 kB
(checked in by powell, 18 months ago)
|
|
New version bump
|
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | dnl Process this file with autoconf to produce a configure script. |
|---|
| 2 | AC_INIT(julian/bem.c) |
|---|
| 3 | |
|---|
| 4 | AM_CONFIG_HEADER(config.h) |
|---|
| 5 | AM_INIT_AUTOMAKE(Julian, 0.9.1) |
|---|
| 6 | RELEASE_DATE="when it's ready" |
|---|
| 7 | AC_SUBST(RELEASE_DATE) |
|---|
| 8 | |
|---|
| 9 | dnl This is needed by autogen.sh, but messes up aclocal 1.5! (The nerve...) |
|---|
| 10 | dnl AM_ACLOCAL_INCLUDE(macros) |
|---|
| 11 | |
|---|
| 12 | AM_MAINTAINER_MODE |
|---|
| 13 | |
|---|
| 14 | dnl Checks for compilers, libtool and platform endianness |
|---|
| 15 | AC_PROG_CC |
|---|
| 16 | AC_ISC_POSIX |
|---|
| 17 | AC_PROG_F77 |
|---|
| 18 | AC_STDC_HEADERS |
|---|
| 19 | AC_F77_LIBRARY_LDFLAGS |
|---|
| 20 | AM_PROG_LIBTOOL |
|---|
| 21 | AC_C_BIGENDIAN |
|---|
| 22 | AC_C_INLINE |
|---|
| 23 | |
|---|
| 24 | dnl ## internationalization support |
|---|
| 25 | dnl ALL_LINGUAS="fr ja" |
|---|
| 26 | dnl AM_GNU_GETTEXT([external]) |
|---|
| 27 | dnl libintl.h for stuff, time.h for MFlops/sec info in tests. |
|---|
| 28 | AC_CHECK_HEADERS(libintl.h time.h) |
|---|
| 29 | |
|---|
| 30 | dnl My checks for math stuff, BLAS/LAPACK and cxref/latex/etc. |
|---|
| 31 | MATH_BLASLAPACK_CHECKS |
|---|
| 32 | CXREF_LATEX_CHECKS |
|---|
| 33 | dnl Need to die if blas is not provided. |
|---|
| 34 | AM_CONDITIONAL(HAVE_LIBLAPACK, test x$HAVE_LAPACK = xyes) |
|---|
| 35 | |
|---|
| 36 | AC_CHECK_PROGS(GEOMVIEW, geomview, |
|---|
| 37 | AC_MSG_WARN(Cannot find geomview, graphics for tests/bemheat and evolheat will not work.)) |
|---|
| 38 | |
|---|
| 39 | dnl This is used all over the place. |
|---|
| 40 | AM_PATH_GLIB_2_0() |
|---|
| 41 | |
|---|
| 42 | PKG_CHECK_MODULES(LIBXML2, libxml-2.0 >= 2.0) |
|---|
| 43 | |
|---|
| 44 | dnl Output |
|---|
| 45 | AC_OUTPUT(Makefile macros/Makefile doc/Makefile doc/Julian.tex doc/Julian.html |
|---|
| 46 | lapack/Makefile julian/Makefile tests/Makefile minutia/Makefile |
|---|
| 47 | dnl po/Makefile.in |
|---|
| 48 | ) |
|---|