Action_Thermostats
Add_AtomRandomPerturbation
Add_RotateAroundBondAction
Add_SelectAtomByNameAction
Adding_Graph_to_ChangeBondActions
Adding_MD_integration_tests
Adding_StructOpt_integration_tests
Automaking_mpqc_open
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_mpqc_open
Subpackage_vmg
ThirdParty_MPQC_rebuilt_buildsystem
TremoloParser_IncreasedPrecision
TremoloParser_MultipleTimesteps
Ubuntu_1604_changes
stable
Line | |
---|
1 | dnl @synopsis AC_DEFINE_DIR(VARNAME, DIR [, DESCRIPTION])
|
---|
2 | dnl
|
---|
3 | dnl This macro _AC_DEFINEs VARNAME to the expansion of the DIR
|
---|
4 | dnl variable, taking care of fixing up ${prefix} and such.
|
---|
5 | dnl
|
---|
6 | dnl Note that the 3 argument form is only supported with autoconf 2.13 and
|
---|
7 | dnl later (i.e. only where _AC_DEFINE supports 3 arguments).
|
---|
8 | dnl
|
---|
9 | dnl Examples:
|
---|
10 | dnl
|
---|
11 | dnl AC_DEFINE_DIR(DATADIR, datadir)
|
---|
12 | dnl AC_DEFINE_DIR(PROG_PATH, bindir, [Location of installed binaries])
|
---|
13 | dnl
|
---|
14 | dnl @version $Id: acinclude.m4,v 1.3 2003/02/06 01:02:12 cljanss Exp $
|
---|
15 | dnl @author Guido Draheim <guidod@gmx.de>, original by Alexandre Oliva
|
---|
16 |
|
---|
17 | AC_DEFUN([AC_DEFINE_DIR], [
|
---|
18 | test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
---|
19 | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
---|
20 | ac_define_dir=`eval echo [$]$2`
|
---|
21 | ac_define_dir=`eval echo [$]ac_define_dir`
|
---|
22 | ifelse($3, ,
|
---|
23 | AC_DEFINE_UNQUOTED($1, "$ac_define_dir"),
|
---|
24 | AC_DEFINE_UNQUOTED($1, "$ac_define_dir", $3))
|
---|
25 | ])
|
---|
26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.