source: util/configure.ac@ e08f45

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

Merge branch 'ConcaveHull' of ../espack2 into ConcaveHull

Conflicts:

molecuilder/src/boundary.cpp
molecuilder/src/boundary.hpp
molecuilder/src/builder.cpp
molecuilder/src/linkedcell.cpp
molecuilder/src/linkedcell.hpp
molecuilder/src/vector.cpp
molecuilder/src/vector.hpp
util/src/NanoCreator.c

Basically, this resulted from a lot of conversions two from spaces to one tab, which is my standard indentation. The mess was caused by eclipse auto-indenting. And in espack2:ConcaveHull was the new stuff, so all from ConcaveHull was replaced in case of doubt.
Additionally, vector had ofstream << operator instead ostream << ...

  • Property mode set to 100755
File size: 1.8 KB
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([src/CreateGaAs.c])
7AC_CONFIG_HEADER([config.h])
8
9AM_INIT_AUTOMAKE
10
11# Checks for programs.
12AC_PROG_CC
13AC_PROG_CXX
14AC_PATH_PROG([PERL],[perl])
15AC_PATH_PROG([SHELL],[sh])
16AC_PROG_AWK
17AM_MISSING_PROG([DOXYGEN], [doxygen])
18
19# Checks for header files.
20AC_HEADER_STDC
21AC_CHECK_HEADERS([stdlib.h string.h])
22
23# Checks for typedefs, structures, and compiler characteristics.
24AC_C_CONST
25AC_TYPE_SIZE_T
26
27# Checks for library functions.
28AC_FUNC_MALLOC
29AC_FUNC_REALLOC
30AC_CHECK_LIB(m, sqrt, ,AC_MSG_ERROR([compatible libc math library not found]))
31# check for GNU Scientific Library
32AC_CHECK_HEADERS([gsl/gsl_blas.h])
33AC_SEARCH_LIBS(dnrm2, goto blas cblas gslblas gslcblas)
34AC_CHECK_LIB(gsl, main, [],
35 [AC_SEARCH_LIBS(cblas_dnrm2, blas cblas gslblas gslcblas)])
36AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
37
38#AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
39
40# test suite
41AC_CONFIG_TESTDIR(tests)
42AC_CONFIG_FILES([tests/atlocal tests/Makefile])
43AC_CONFIG_FILES([tests/NanoCreator], [chmod +x tests/NanoCreator])
44
45AC_CHECK_FUNCS([pow sqrt strchr strrchr strstr])
46AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile])
47AC_CONFIG_FILES([src/Nanotubes.pl src/ReSequenceDX.pl src/BOSSMatcher.pl])
48AC_CONFIG_FILES([src/average_result.sh src/CalculateDensity.sh src/CalculateMass.sh src/config2xyz.sh src/convert2old.sh src/convertpdb.sh src/gather_all_results.sh src/gather_averaged_results.sh src/gather_result.sh src/grep_shielding.sh src/meas2pdb.sh src/AdaptiveANOVA.sh src/CreateFromXYZ.sh src/dynamicANOVA.sh src/SortByRings.sh])
49AC_OUTPUT
50
Note: See TracBrowser for help on using the repository browser.