source: git/libpolys/polys/configure.ac @ 86bbe3

spielwiese
Last change on this file since 86bbe3 was 6bec87, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
. started migrating polys to automake . further fixes to the include paths
  • Property mode set to 100644
File size: 661 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([polys.cc])
8AC_CONFIG_HEADERS([config.h])
9
10# Checks for programs.
11AC_PROG_CXX
12AC_PROG_CC
13AC_PROG_LN_S
14AC_PROG_RANLIB
15
16# Checks for libraries.
17
18# Checks for header files.
19AC_CHECK_HEADERS([stdlib.h string.h])
20
21# Checks for typedefs, structures, and compiler characteristics.
22AC_HEADER_STDBOOL
23AC_C_INLINE
24
25# Checks for library functions.
26AC_FUNC_MALLOC
27AC_CHECK_FUNCS([memset])
28
29AC_CONFIG_FILES([Makefile])
30AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.