source: git/libpolys/coeffs/configure.ac @ 014b65

spielwiese
Last change on this file since 014b65 was 014b65, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
- moved misc,reporter,resources,coeffs,polys -> (new) libpolys (Hans agreed) - migrated to automake in coeffs, misc status: everything builds (except polys) todo: . migrate resources and reporter to automake . create autoconf macros for omalloc, factory, and libpolys
  • Property mode set to 100644
File size: 879 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6AM_INIT_AUTOMAKE
7AC_CONFIG_SRCDIR([rmodulon.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
23
24# Checks for libraries.
25
26# Checks for header files.
27AC_CHECK_HEADERS([float.h stdlib.h string.h])
28
29# Checks for typedefs, structures, and compiler characteristics.
30AC_HEADER_STDBOOL
31AC_C_INLINE
32AC_TYPE_SIZE_T
33
34# Checks for library functions.
35AC_FUNC_ERROR_AT_LINE
36AC_CHECK_FUNCS([memmove memset pow sqrt strchr])
37
38AC_SUBST(LIBPREFIX)
39
40AC_CONFIG_FILES([Makefile])
41AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.