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