mirror of
https://github.com/envmodules/modules.git
synced 2026-05-30 00:12:31 +08:00
Introduce the --enable-paginate configure option to choose at installation time the default paginate behavior. Enabled by default. Signed-off-by: Xavier Delaruelle <xavier.delaruelle@cea.fr>
137 lines
3.7 KiB
Plaintext
137 lines
3.7 KiB
Plaintext
set install_baseprefix "@baseprefix@"
|
|
set install_prefix "@prefix@"
|
|
set install_bindir "@bindir@"
|
|
set install_mandir "@mandir@"
|
|
set install_etcdir "@etcdir@"
|
|
set install_initdir "@initdir@"
|
|
set install_libdir "@libdir@"
|
|
set install_libexecdir "@libexecdir@"
|
|
set install_modulefilesdir "@modulefilesdir@"
|
|
set install_moduleshome "@moduleshome@"
|
|
|
|
set install_versioning "@versioning@"
|
|
|
|
set install_version "@VERSION@"
|
|
set install_release "@RELEASE@"
|
|
|
|
set install_modulepath {@modulepath@}
|
|
set install_loadedmodules "@loadedmodules@"
|
|
|
|
set install_silentshdbgsupport "@silentshdbgsupport@"
|
|
set install_setshellstartup "@setshellstartup@"
|
|
set install_quarantinesupport "@quarantinesupport@"
|
|
set install_quarantinevars "@quarantinevars@"
|
|
|
|
set install_libtclenvmodules "@libtclenvmodules@"
|
|
set install_shlib_suffix "@SHLIB_SUFFIX@"
|
|
|
|
set install_multilibsupport "@multilibsupport@"
|
|
set install_libdir64 "@libdir64@"
|
|
set install_libdir32 "@libdir32@"
|
|
|
|
set install_setmanpath "@setmanpath@"
|
|
set install_appendmanpath "@appendmanpath@"
|
|
set install_usemanpath "@usemanpath@"
|
|
set install_setbinpath "@setbinpath@"
|
|
set install_appendbinpath "@appendbinpath@"
|
|
set install_examplemodulefiles "@examplemodulefiles@"
|
|
|
|
set install_initconfin "@initconfin@"
|
|
|
|
set install_builddoc "@builddoc@"
|
|
|
|
set install_paginate "@paginate@"
|
|
set install_pager "@pager@"
|
|
set install_pageropts "@pageropts@"
|
|
set install_pagercmd $install_pager
|
|
if {$install_pageropts ne {}} {
|
|
append install_pagercmd " $install_pageropts"
|
|
}
|
|
|
|
set install_loggedevents "@loggedevents@"
|
|
set install_logger "@logger@"
|
|
set install_loggeropts "@loggeropts@"
|
|
set install_loggercmd $install_logger
|
|
if {$install_loggeropts ne {}} {
|
|
append install_loggercmd " $install_loggeropts"
|
|
}
|
|
|
|
set install_verbosity "@verbosity@"
|
|
|
|
set install_color "@color@"
|
|
set install_darkbgcolors "@darkbgcolors@"
|
|
set install_lightbgcolors "@lightbgcolors@"
|
|
set install_termbg "@termbg@"
|
|
|
|
set install_autohandling "@autohandling@"
|
|
set install_conflictunload "@conflictunload@"
|
|
set install_requirevia "@requirevia@"
|
|
|
|
set install_implicitrequirement "@implicitrequirement@"
|
|
|
|
set install_availindepth "@availindepth@"
|
|
set install_spiderindepth "@spiderindepth@"
|
|
|
|
set install_lockedconfigs "@lockedconfigs@"
|
|
|
|
set install_unloadmatchorder "@unloadmatchorder@"
|
|
|
|
set install_implicitdefault "@implicitdefault@"
|
|
|
|
set install_extendeddefault "@extendeddefault@"
|
|
|
|
set install_advversspec "@advversspec@"
|
|
|
|
set install_uniquenameloaded "@uniquenameloaded@"
|
|
|
|
set install_sourcecache "@sourcecache@"
|
|
|
|
set install_searchmatch "@searchmatch@"
|
|
|
|
set install_wa277 "@wa277@"
|
|
|
|
set install_icase "@icase@"
|
|
|
|
set install_ml "@ml@"
|
|
|
|
set install_windowssupport "@windowssupport@"
|
|
|
|
set install_nearlyforbiddendays "@nearlyforbiddendays@"
|
|
|
|
set install_tagabbrev "@tagabbrev@"
|
|
set install_tagcolorname "@tagcolorname@"
|
|
|
|
set install_stickypurge "@stickypurge@"
|
|
|
|
set install_abortonerror "@abortonerror@"
|
|
|
|
set install_mcookieversioncheck "@mcookieversioncheck@"
|
|
|
|
set install_availoutput "@availoutput@"
|
|
set install_availterseoutput "@availterseoutput@"
|
|
set install_listoutput "@listoutput@"
|
|
set install_listterseoutput "@listterseoutput@"
|
|
set install_spideroutput "@spideroutput@"
|
|
set install_spiderterseoutput "@spiderterseoutput@"
|
|
|
|
set install_variantshortcut "@variantshortcut@"
|
|
|
|
set install_editor "@editor@"
|
|
|
|
set install_pathentryreorder "@pathentryreorder@"
|
|
|
|
set install_bashcompletiondir "@bashcompletiondir@"
|
|
set install_fishcompletiondir "@fishcompletiondir@"
|
|
set install_zshcompletiondir "@zshcompletiondir@"
|
|
|
|
set install_tcllinter "@tcllinter@"
|
|
set install_tcllinteropts "@tcllinteropts@"
|
|
set install_tcllintercmd $install_tcllinter
|
|
if {$install_tcllinteropts ne {}} {
|
|
append install_tcllintercmd " $install_tcllinteropts"
|
|
}
|
|
|
|
# command location
|
|
set install_tclsh "@TCLSH@"
|
|
set install_python "@PYTHON@"
|