source: ThirdParty/levmar/configure.ac@ 4e8108

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 Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation 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 PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 4e8108 was 4e8108, checked in by Frederik Heber <heber@…>, 8 years ago

Libtool consolidates and updates itself through LIBTOOL_DEPS for all packages.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(levmar, 1.0.0, [foo@molecuilder.de], [levmar], [http://www.molecuilder.de/])
6AC_CONFIG_AUX_DIR([build-aux])
7AC_CONFIG_HEADER([liblevmar_config.h])
8AC_CONFIG_SRCDIR([src/lm.c])
9AC_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)
14AM_INIT_AUTOMAKE([dist-bzip2 1.5 tar-pax subdir-objects])
15
16# Checks for programs.
17AC_PROG_CC
18AC_PROG_INSTALL
19
20# check for lapack
21AX_LAPACK
22
23# check for blas
24AX_BLAS
25
26# check for math library
27AC_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
36LT_INIT([static])
37AC_SUBST([LIBTOOL_DEPS])
38
39# Define these substitions here to keep all version information in one place.
40# For information on how to properly maintain the library version information,
41# refer to the libtool manual, section "Updating library version information":
42# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
43AC_SUBST([LEVMAR_SO_VERSION], [1:0:0])
44AC_SUBST([LEVMAR_API_VERSION], [1.0.0])
45
46# create output files
47AC_CONFIG_FILES([
48 Makefile
49 src/Makefile
50])
51AC_CONFIG_FILES([levmar.pc:levmar.pc.in])
52
53AC_OUTPUT
54
Note: See TracBrowser for help on using the repository browser.