source: git/coeffs/configure.ac @ 94b759

spielwiese
Last change on this file since 94b759 was 7d90aa, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
initial changes to 'coeffs' + first build system
  • Property mode set to 100644
File size: 701 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.63])
5AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6AC_CONFIG_SRCDIR([rmodulon.h])
7AC_CONFIG_HEADERS([config.h])
8
9# Checks for programs.
10AC_PROG_CXX
11AC_PROG_CC
12AC_PROG_LN_S
13AC_PROG_INSTALL
14
15# Checks for libraries.
16
17# Checks for header files.
18AC_CHECK_HEADERS([float.h stdlib.h string.h])
19
20# Checks for typedefs, structures, and compiler characteristics.
21AC_HEADER_STDBOOL
22AC_C_INLINE
23AC_TYPE_SIZE_T
24
25# Checks for library functions.
26AC_FUNC_ERROR_AT_LINE
27AC_CHECK_FUNCS([memmove memset pow sqrt strchr])
28
29AC_CONFIG_FILES([Makefile])
30AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.