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 | |
---|
4 | AC_PREREQ([2.65]) |
---|
5 | AC_INIT([coeffs], [3.1.2.sw]) |
---|
6 | AM_INIT_AUTOMAKE |
---|
7 | AC_CONFIG_SRCDIR([coeffs.h]) |
---|
8 | AC_CONFIG_HEADERS([config.h]) |
---|
9 | |
---|
10 | #check for host: |
---|
11 | AC_CANONICAL_HOST |
---|
12 | case $host_os in |
---|
13 | *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";; |
---|
14 | * ) LIBPREFIX="";; |
---|
15 | esac |
---|
16 | |
---|
17 | # Checks for programs. |
---|
18 | AC_PROG_CXX |
---|
19 | AC_PROG_CC |
---|
20 | AC_PROG_LN_S |
---|
21 | AC_PROG_INSTALL |
---|
22 | AC_PROG_RANLIB |
---|
23 | AM_PROG_CC_C_O |
---|
24 | |
---|
25 | # Checks for libraries. |
---|
26 | |
---|
27 | # Checks for header files. |
---|
28 | AC_CHECK_HEADERS([float.h stdlib.h string.h]) |
---|
29 | |
---|
30 | # Checks for typedefs, structures, and compiler characteristics. |
---|
31 | AC_HEADER_STDBOOL |
---|
32 | AC_C_INLINE |
---|
33 | AC_TYPE_SIZE_T |
---|
34 | |
---|
35 | # Checks for library functions. |
---|
36 | AC_FUNC_ERROR_AT_LINE |
---|
37 | AC_CHECK_FUNCS([memmove memset pow sqrt strchr]) |
---|
38 | |
---|
39 | AC_SUBST(LIBPREFIX) |
---|
40 | |
---|
41 | AC_CONFIG_FILES([Makefile]) |
---|
42 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.