source: trunk/FACT++/erfa/configure.ac@ 18921

Last change on this file since 18921 was 18921, checked in by tbretz, 7 years ago
Updated to ERFA 1.4.0
File size: 941 bytes
Line 
1# Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.68])
4## Follow the instructions in RELEASE.rst to change package version
5AC_INIT([erfa],[1.4.0])
6AC_CONFIG_SRCDIR([src/erfa.h])
7AC_CONFIG_HEADER([config.h])
8AC_CONFIG_MACRO_DIR([m4])
9AC_CONFIG_AUX_DIR([build-aux])
10AM_INIT_AUTOMAKE([foreign])
11
12AC_PROG_CC
13LT_INIT
14
15ERFA_NUMVER
16## Version info is in current : revision : age form
17## A library supports interfaces from current downto current - age
18## Revision is the version of the current interface
19## Follow the instructions in RELEASE.rst to change the version info
20ERFA_LIB_VERSION_INFO(5, 0, 4)
21
22## SOFA version, update if needed in new relases
23AC_DEFINE([SOFA_VERSION], ["20170420"], [Define to the version of SOFA])
24
25# Checks for libraries.
26AC_SEARCH_LIBS([sin], [m], , AC_MSG_ERROR([cannot find math functions]))
27
28AC_CONFIG_FILES([Makefile
29 erfa.pc
30 src/Makefile
31])
32AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.