source: util/configure.ac@ c9b32a

Last change on this file since c9b32a was 464c6d, checked in by Frederik Heber <heber@…>, 17 years ago

script files have paths (for bin programs used inside) now written into by automake

We use $prefix@ and alikes to put the correct path into it. Though, it's a bit of a pain as @bindir@ is not replaced with an absolute path but with ${exec_prefix}/bindir, which is not helping very much ... (exec_prefix=@prefix@ then helps)

  • Property mode set to 100644
File size: 897 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])
33AC_CONFIG_FILES([CreateFromXYZ.sh dynamicANOVA.sh Nanotubes.pl ReSequenceDX.pl])
34AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.