Action_Thermostats
Add_AtomRandomPerturbation
Add_RotateAroundBondAction
Add_SelectAtomByNameAction
Adding_Graph_to_ChangeBondActions
Adding_MD_integration_tests
Adding_StructOpt_integration_tests
AutomationFragmentation_failures
Candidate_v1.6.0
Candidate_v1.6.1
ChangeBugEmailaddress
ChangingTestPorts
ChemicalSpaceEvaluator
Combining_Subpackages
Debian_Package_split
Debian_package_split_molecuildergui_only
Disabling_MemDebug
Docu_Python_wait
EmpiricalPotential_contain_HomologyGraph_documentation
Enable_parallel_make_install
Enhance_userguide
Enhanced_StructuralOptimization
Enhanced_StructuralOptimization_continued
Example_ManyWaysToTranslateAtom
Exclude_Hydrogens_annealWithBondGraph
FitPartialCharges_GlobalError
Fix_ChronosMutex
Fix_StatusMsg
Fix_StepWorldTime_single_argument
Fix_Verbose_Codepatterns
ForceAnnealing_goodresults
ForceAnnealing_oldresults
ForceAnnealing_tocheck
ForceAnnealing_with_BondGraph
ForceAnnealing_with_BondGraph_continued
ForceAnnealing_with_BondGraph_continued_betteresults
ForceAnnealing_with_BondGraph_contraction-expansion
GeometryObjects
Gui_displays_atomic_force_velocity
IndependentFragmentGrids_IntegrationTest
JobMarket_RobustOnKillsSegFaults
JobMarket_StableWorkerPool
JobMarket_unresolvable_hostname_fix
ODR_violation_mpqc_open
PartialCharges_OrthogonalSummation
PythonUI_with_named_parameters
QtGui_reactivate_TimeChanged_changes
Recreated_GuiChecks
RotateToPrincipalAxisSystem_UndoRedo
StoppableMakroAction
Subpackage_levmar
Subpackage_vmg
TremoloParser_IncreasedPrecision
TremoloParser_MultipleTimesteps
Ubuntu_1604_changes
stable
Line | |
---|
1 | # -*- Autoconf -*-
|
---|
2 | # Process this file with autoconf to produce a configure script.
|
---|
3 |
|
---|
4 | AC_PREREQ(2.59)
|
---|
5 | AC_INIT(levmar, 1.0.0, [foo@molecuilder.de], [levmar], [http://www.molecuilder.de/])
|
---|
6 | AC_CONFIG_AUX_DIR([build-aux])
|
---|
7 | AC_CONFIG_HEADER([liblevmar_config.h])
|
---|
8 | AC_CONFIG_SRCDIR([src/lm.c])
|
---|
9 | AC_CONFIG_MACRO_DIR([m4])
|
---|
10 |
|
---|
11 | # parallel-tests: use parallel test druver
|
---|
12 | # color-tests: us coloring to indicate success/failure when available
|
---|
13 | # tar-pax: use newer tar implementation with longer filename (>99 chars)
|
---|
14 | AM_INIT_AUTOMAKE([dist-bzip2 1.5 parallel-tests color-tests tar-pax subdir-objects])
|
---|
15 |
|
---|
16 | # Checks for programs.
|
---|
17 | AC_PROG_CC
|
---|
18 | AC_PROG_INSTALL
|
---|
19 |
|
---|
20 | # check for lapack
|
---|
21 | AX_LAPACK
|
---|
22 |
|
---|
23 | # check for blas
|
---|
24 | AX_BLAS
|
---|
25 |
|
---|
26 | # check for math library
|
---|
27 | AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
|
---|
28 |
|
---|
29 | # check for f2c
|
---|
30 | #AC_CHECK_LIB(libf2c, c_cos, [
|
---|
31 | # ], [
|
---|
32 | # AC_MSG_ERROR(["Could not find libf2c"])
|
---|
33 | #])
|
---|
34 |
|
---|
35 | # use libtool
|
---|
36 | LT_INIT([static])
|
---|
37 |
|
---|
38 | # Define these substitions here to keep all version information in one place.
|
---|
39 | # For information on how to properly maintain the library version information,
|
---|
40 | # refer to the libtool manual, section "Updating library version information":
|
---|
41 | # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
---|
42 | AC_SUBST([LEVMAR_SO_VERSION], [1:0:0])
|
---|
43 | AC_SUBST([LEVMAR_API_VERSION], [1.0.0])
|
---|
44 |
|
---|
45 | # create output files
|
---|
46 | AC_CONFIG_TESTDIR([tests])
|
---|
47 | AC_CONFIG_FILES([
|
---|
48 | Makefile
|
---|
49 | src/Makefile
|
---|
50 | tests/Makefile
|
---|
51 | ])
|
---|
52 | AC_CONFIG_FILES([tests/lmdemo], [chmod +x tests/lmdemo])
|
---|
53 | AC_CONFIG_FILES(
|
---|
54 | tests/atlocal
|
---|
55 | )
|
---|
56 | AC_CONFIG_FILES([levmar.pc:levmar.pc.in])
|
---|
57 |
|
---|
58 | AC_OUTPUT
|
---|
59 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.