core: do not build man page by default
This commit is contained in:
parent
91b7aec855
commit
3aed4ac11f
@ -87,8 +87,8 @@ OPTION(ENABLE_LUA "Enable Lua scripting language" ON)
|
||||
OPTION(ENABLE_TCL "Enable Tcl scripting language" ON)
|
||||
OPTION(ENABLE_GUILE "Enable Scheme (guile) scripting language" ON)
|
||||
OPTION(ENABLE_XFER "Enable Xfer plugin" ON)
|
||||
OPTION(ENABLE_MAN "Enable Man page" ON)
|
||||
OPTION(ENABLE_DOC "Enable Documentation" OFF)
|
||||
OPTION(ENABLE_MAN "Enable build of man page" OFF)
|
||||
OPTION(ENABLE_DOC "Enable build of documentation" OFF)
|
||||
|
||||
# option WEECHAT_HOME
|
||||
IF(NOT DEFINED WEECHAT_HOME OR "${WEECHAT_HOME}" STREQUAL "")
|
||||
|
@ -15,7 +15,7 @@ Version 0.4.2 (under dev!)
|
||||
--------------------------
|
||||
|
||||
* core: disable build of doc by default, add cmake option ENABLE_MAN to compile
|
||||
man page (on by default)
|
||||
man page (off by default)
|
||||
* core: add option "-o" for command /color
|
||||
* core: fix priority of logical operators in evaluation of expression
|
||||
(AND takes precedence over the OR)
|
||||
|
2
NEWS
2
NEWS
@ -23,7 +23,7 @@ Documentation is not built by default any more, you have to use option
|
||||
|
||||
The man page is now built with asciidoc and translated in several
|
||||
languages. A new cmake option `ENABLE_MAN` has been added to compile man page
|
||||
(`ON` by default).
|
||||
(`OFF` by default).
|
||||
|
||||
=== Aspell colors ===
|
||||
|
||||
|
@ -152,7 +152,7 @@ AC_ARG_WITH(lua-inc, [ --with-lua-inc=DIR, lua include files are in
|
||||
AC_ARG_WITH(lua-lib, [ --with-lua-lib=DIR, lua library files are in DIR (default=autodetect)],lua_lib=$withval,lua_lib='')
|
||||
AC_ARG_WITH(lua-suffix, [ --with-lua-suffix=ARG lua is suffixed with ARG (default=autodetect)],lua_suffix=$withval,lua_suffix='')
|
||||
AC_ARG_WITH(tclconfig, [ --with-tclconfig=DIR directory containing tcl configuration (tclConfig.sh)],tclconfig=$withval,tclconfig='')
|
||||
AC_ARG_ENABLE(man, [ --disable-man turn off build of man page (default=built if found)],enable_man=$enableval,enable_man=yes)
|
||||
AC_ARG_ENABLE(man, [ --enable-man turn on build of man page (default=not built)],enable_man=$enableval,enable_man=no)
|
||||
AC_ARG_ENABLE(doc, [ --enable-doc turn on build of documentation (default=not built)],enable_doc=$enableval,enable_doc=no)
|
||||
AC_ARG_WITH(debug, [ --with-debug debugging: 0=no debug, 1=debug compilation (default=1)],debug=$withval,debug=1)
|
||||
|
||||
|
@ -178,7 +178,7 @@ Liste von häufig verwendeten Optionen:
|
||||
kompiliert Demo-Erweiterung.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| ENABLE_MAN | `ON`, `OFF` | ON |
|
||||
| ENABLE_MAN | `ON`, `OFF` | OFF |
|
||||
Compile man page.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
|
@ -175,7 +175,7 @@ List of commonly used options:
|
||||
| ENABLE_DEMO | `ON`, `OFF` | OFF |
|
||||
Compile Demo plugin.
|
||||
|
||||
| ENABLE_MAN | `ON`, `OFF` | ON |
|
||||
| ENABLE_MAN | `ON`, `OFF` | OFF |
|
||||
Compile man page.
|
||||
|
||||
| ENABLE_DOC | `ON`, `OFF` | OFF |
|
||||
|
@ -177,7 +177,7 @@ Liste des options couramment utilisées :
|
||||
| ENABLE_DEMO | `ON`, `OFF` | OFF |
|
||||
Compiler l'extension Demo.
|
||||
|
||||
| ENABLE_MAN | `ON`, `OFF` | ON |
|
||||
| ENABLE_MAN | `ON`, `OFF` | OFF |
|
||||
Compiler la page man.
|
||||
|
||||
| ENABLE_DOC | `ON`, `OFF` | OFF |
|
||||
|
@ -187,7 +187,7 @@ List of commonly used options:
|
||||
| ENABLE_DEMO | `ON`, `OFF` | OFF |
|
||||
Compile Demo plugin.
|
||||
|
||||
| ENABLE_MAN | `ON`, `OFF` | ON |
|
||||
| ENABLE_MAN | `ON`, `OFF` | OFF |
|
||||
Compile man page.
|
||||
|
||||
| ENABLE_DOC | `ON`, `OFF` | OFF |
|
||||
|
@ -173,7 +173,7 @@ List of commonly used options:
|
||||
| ENABLE_DEMO | `ON`, `OFF` | OFF |
|
||||
Compile Demo plugin.
|
||||
|
||||
| ENABLE_MAN | `ON`, `OFF` | ON |
|
||||
| ENABLE_MAN | `ON`, `OFF` | OFF |
|
||||
Compile man page.
|
||||
|
||||
| ENABLE_DOC | `ON`, `OFF` | OFF |
|
||||
|
Loading…
x
Reference in New Issue
Block a user