diff --git a/src/tools/lzma.jam b/src/tools/lzma.jam index e0c2c17d6..0ceeff117 100644 --- a/src/tools/lzma.jam +++ b/src/tools/lzma.jam @@ -33,6 +33,29 @@ if --debug-configuration in [ modules.peek : ARGV ] .debug = true ; } +# Initializes the lzma library. +# +# Options for configuring lzma:: +# +# +# The directory containing the lzma binaries. +# +# Overrides the default library name. +# +# The directory containing the lzma headers. +# +# If none of these options is specified, then the environmental +# variables LZMA_LIBRARY_PATH, LZMA_NAME, and LZMA_INCLUDE will +# be used instead. +# +# Examples:: +# +# # Find lzma in the default system location +# using lzma ; +# # Find lzma in /usr/local +# using lzma : 1.2.7 +# : /usr/local/include /usr/local/lib ; +# rule init ( version ? # (currently ignored)