source: git/libpolys/coeffs/configure.ac @ 630ca9

spielwiese
Last change on this file since 630ca9 was 630ca9, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
FIX: separate debug/optimized flags for resources and coeffs FIX: longrat.cc: missing "coeff" arguments!
  • Property mode set to 100644
File size: 860 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([coeffs], [3.1.2.sw])
6AM_INIT_AUTOMAKE
7AC_CONFIG_SRCDIR([coeffs.h])
8AC_CONFIG_HEADERS([config.h])
9
10#check for host:
11AC_CANONICAL_HOST
12case $host_os in
13  *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";;
14  * ) LIBPREFIX="";;
15esac
16
17# Checks for programs.
18AC_PROG_CXX
19AC_PROG_CC
20AC_PROG_LN_S
21AC_PROG_INSTALL
22AC_PROG_RANLIB
23AM_PROG_CC_C_O
24
25# Checks for libraries.
26
27# Checks for header files.
28AC_CHECK_HEADERS([float.h stdlib.h string.h])
29
30# Checks for typedefs, structures, and compiler characteristics.
31AC_HEADER_STDBOOL
32AC_C_INLINE
33AC_TYPE_SIZE_T
34
35# Checks for library functions.
36AC_FUNC_ERROR_AT_LINE
37AC_CHECK_FUNCS([memmove memset pow sqrt strchr])
38
39AC_SUBST(LIBPREFIX)
40
41AC_CONFIG_FILES([Makefile])
42AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.