source: git/polys/configure.ac @ 6ed0df1

spielwiese
Last change on this file since 6ed0df1 was 6ed0df1, checked in by Hans Schoenemann <hannes@…>, 14 years ago
configure/make for polys
  • Property mode set to 100644
File size: 631 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])
6AC_CONFIG_SRCDIR([longalg.cc])
7AC_CONFIG_HEADERS([config.h])
8
9# Checks for programs.
10AC_PROG_CXX
11AC_PROG_CC
12AC_PROG_LN_S
13
14# Checks for libraries.
15
16# Checks for header files.
17AC_CHECK_HEADERS([stdlib.h string.h])
18
19# Checks for typedefs, structures, and compiler characteristics.
20AC_HEADER_STDBOOL
21AC_C_INLINE
22
23# Checks for library functions.
24AC_FUNC_MALLOC
25AC_CHECK_FUNCS([memset])
26
27AC_CONFIG_FILES([Makefile])
28AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.