source: util/configure.ac@ 76b3dc

Last change on this file since 76b3dc was a0bcf1, checked in by Frederik Heber <heber@…>, 17 years ago

-initial commit
-Minimum set of files needed from ESPACK SVN repository
-Switch to three tantamount package parts instead of all relating to pcp (as at some time Ralf's might find inclusion as well)

  • Property mode set to 100644
File size: 845 bytes
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(PCP_Utilities, 1.0, heber@ins.uni-bonn.de)
6AC_CONFIG_SRCDIR([CreateGaAs.c])
7AC_CONFIG_HEADER([config.h])
8
9AM_INIT_AUTOMAKE
10
11# Checks for programs.
12AC_PROG_AWK
13AC_PROG_CXX
14AC_PROG_CC
15AM_MISSING_PROG([DOXYGEN], [doxygen])
16
17# Checks for libraries.
18AC_CHECK_LIB(m, sqrt, ,AC_MSG_ERROR([compatible libc math library not found]))
19
20# Checks for header files.
21AC_HEADER_STDC
22AC_CHECK_HEADERS([stdlib.h string.h])
23
24# Checks for typedefs, structures, and compiler characteristics.
25AC_C_CONST
26AC_TYPE_SIZE_T
27
28# Checks for library functions.
29AC_FUNC_MALLOC
30AC_FUNC_REALLOC
31AC_CHECK_FUNCS([pow sqrt strchr strrchr strstr])
32AC_CONFIG_FILES([Makefile doc/Makefile Nanotubes.pl ReSequenceDX.pl])
33AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.