summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-06-08 15:54:06 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-06-08 15:54:06 +0200
commita8589a0db6165b9b9a99c8a80bf01a953f5065c0 (patch)
treec4003a1947976638c7307923108f2bd19f41601e /doc
parentfe1642da08bc40a1eea3d1445eb2c2b75b5118b2 (diff)
downloadweechat-a8589a0db6165b9b9a99c8a80bf01a953f5065c0.zip
doc: add cmake options in user's guide
Diffstat (limited to 'doc')
-rw-r--r--doc/de/weechat_user.de.txt120
-rw-r--r--doc/en/weechat_user.en.txt116
-rw-r--r--doc/fr/weechat_user.fr.txt116
-rw-r--r--doc/it/weechat_user.it.txt120
-rw-r--r--doc/ja/weechat_user.ja.txt120
5 files changed, 592 insertions, 0 deletions
diff --git a/doc/de/weechat_user.de.txt b/doc/de/weechat_user.de.txt
index 5aa480ec8..1fea9ad92 100644
--- a/doc/de/weechat_user.de.txt
+++ b/doc/de/weechat_user.de.txt
@@ -138,6 +138,118 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for cmake, with format: "-DOPTION=VALUE".
+
+// TRANSLATION MISSING
+List of commonly used options:
+
+// TRANSLATION MISSING
+[width="100%",cols="2m,2,2m,12",options="header"]
+|========================================
+| Option | Values | Default value | Description
+
+| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
+ The type of build: `Debug` (or `RelWithDebInfo`) is recommended if you are
+ running development version of WeeChat.
+
+| PREFIX | directory | /usr/local |
+ The directory where WeeChat will be installed.
+
+| WEECHAT_HOME | directory | ~/.weechat |
+ The default home directory when running WeeChat.
+
+| ENABLE_ALIAS | `ON`, `OFF` | ON |
+ Compile <<alias_plugin,Alias plugin>>.
+
+| ENABLE_ASPELL | `ON`, `OFF` | ON |
+ Compile <<aspell_plugin,Aspell plugin>>.
+
+| ENABLE_CHARSET | `ON`, `OFF` | ON |
+ Compile <<charset_plugin,Charset plugin>>.
+
+| ENABLE_DEMO | `ON`, `OFF` | OFF |
+ Compile Demo plugin.
+
+| ENABLE_DOC | `ON`, `OFF` | ON |
+ Compile documentation (it takes a long time, you can turn off to speed up
+ the compilation).
+
+| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
+ Compile <<aspell_plugin,Aspell plugin>> with Enchant.
+
+| ENABLE_FIFO | `ON`, `OFF` | ON |
+ Compile <<fifo_plugin,Fifo plugin>>.
+
+| ENABLE_GNUTLS | `ON`, `OFF` | ON |
+ Enable Gnutls (for SSL).
+
+| ENABLE_GUILE | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Guile plugin>> (Scheme).
+
+| ENABLE_IRC | `ON`, `OFF` | ON |
+ Compile <<irc_plugin,IRC plugin>>.
+
+| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
+ Support of large files.
+
+| ENABLE_LOGGER | `ON`, `OFF` | ON |
+ Compile <<logger_plugin,Logger plugin>>.
+
+| ENABLE_LUA | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Lua plugin>>.
+
+| ENABLE_NCURSES | `ON`, `OFF` | ON |
+ Compile Ncurses interface.
+
+| ENABLE_NLS | `ON`, `OFF` | ON |
+ Enable NLS (translations).
+
+| ENABLE_PERL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Perl plugin>>.
+
+| ENABLE_PYTHON | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Python plugin>>.
+
+| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
+ Compile <<scripts_plugins,Python plugin>> using Python 3 (*NOT* recommended
+ because many scripts are not compatible with Python 3).
+
+| ENABLE_RELAY | `ON`, `OFF` | ON |
+ Compile <<relay_plugin,Relay plugin>>.
+
+| ENABLE_RMODIFIER | `ON`, `OFF` | ON |
+ Compile <<rmodifier_plugin,Rmodifier plugin>>.
+
+| ENABLE_RUBY | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Ruby plugin>>.
+
+| ENABLE_SCRIPT | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Script plugin>>.
+
+| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,script plugins>> (Python, Perl, Ruby, Lua, Tcl,
+ Guile).
+
+| ENABLE_TCL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Tcl plugin>>.
+
+| ENABLE_XFER | `ON`, `OFF` | ON |
+ Compile <<xfer_plugin,Xfer plugin>>.
+|========================================
+
+The other options can be displayed with this command:
+
+----------------------------------------
+$ cmake -LA
+----------------------------------------
+
+Or with Curses interface:
+
+----------------------------------------
+$ ccmake ..
+----------------------------------------
+
[[compile_with_autotools]]
Kompilieren mit autotools
^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -166,6 +278,14 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for 'configure' script, they can be displayed with this
+command:
+
+----------------------------------------
+$ ./configure --help
+----------------------------------------
+
[[git_sources]]
Git Quellen
~~~~~~~~~~~
diff --git a/doc/en/weechat_user.en.txt b/doc/en/weechat_user.en.txt
index 4a96bd5ed..7547155c5 100644
--- a/doc/en/weechat_user.en.txt
+++ b/doc/en/weechat_user.en.txt
@@ -138,6 +138,115 @@ $ make
$ make install
----------------------------------------
+Options can be used for cmake, with format: "-DOPTION=VALUE".
+
+List of commonly used options:
+
+[width="100%",cols="2m,2,2m,12",options="header"]
+|========================================
+| Option | Values | Default value | Description
+
+| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
+ The type of build: `Debug` (or `RelWithDebInfo`) is recommended if you are
+ running development version of WeeChat.
+
+| PREFIX | directory | /usr/local |
+ The directory where WeeChat will be installed.
+
+| WEECHAT_HOME | directory | ~/.weechat |
+ The default home directory when running WeeChat.
+
+| ENABLE_ALIAS | `ON`, `OFF` | ON |
+ Compile <<alias_plugin,Alias plugin>>.
+
+| ENABLE_ASPELL | `ON`, `OFF` | ON |
+ Compile <<aspell_plugin,Aspell plugin>>.
+
+| ENABLE_CHARSET | `ON`, `OFF` | ON |
+ Compile <<charset_plugin,Charset plugin>>.
+
+| ENABLE_DEMO | `ON`, `OFF` | OFF |
+ Compile Demo plugin.
+
+| ENABLE_DOC | `ON`, `OFF` | ON |
+ Compile documentation (it takes a long time, you can turn off to speed up
+ the compilation).
+
+| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
+ Compile <<aspell_plugin,Aspell plugin>> with Enchant.
+
+| ENABLE_FIFO | `ON`, `OFF` | ON |
+ Compile <<fifo_plugin,Fifo plugin>>.
+
+| ENABLE_GNUTLS | `ON`, `OFF` | ON |
+ Enable Gnutls (for SSL).
+
+| ENABLE_GUILE | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Guile plugin>> (Scheme).
+
+| ENABLE_IRC | `ON`, `OFF` | ON |
+ Compile <<irc_plugin,IRC plugin>>.
+
+| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
+ Support of large files.
+
+| ENABLE_LOGGER | `ON`, `OFF` | ON |
+ Compile <<logger_plugin,Logger plugin>>.
+
+| ENABLE_LUA | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Lua plugin>>.
+
+| ENABLE_NCURSES | `ON`, `OFF` | ON |
+ Compile Ncurses interface.
+
+| ENABLE_NLS | `ON`, `OFF` | ON |
+ Enable NLS (translations).
+
+| ENABLE_PERL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Perl plugin>>.
+
+| ENABLE_PYTHON | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Python plugin>>.
+
+| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
+ Compile <<scripts_plugins,Python plugin>> using Python 3 (*NOT* recommended
+ because many scripts are not compatible with Python 3).
+
+| ENABLE_RELAY | `ON`, `OFF` | ON |
+ Compile <<relay_plugin,Relay plugin>>.
+
+| ENABLE_RMODIFIER | `ON`, `OFF` | ON |
+ Compile <<rmodifier_plugin,Rmodifier plugin>>.
+
+| ENABLE_RUBY | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Ruby plugin>>.
+
+| ENABLE_SCRIPT | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Script plugin>>.
+
+| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,script plugins>> (Python, Perl, Ruby, Lua, Tcl,
+ Guile).
+
+| ENABLE_TCL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Tcl plugin>>.
+
+| ENABLE_XFER | `ON`, `OFF` | ON |
+ Compile <<xfer_plugin,Xfer plugin>>.
+|========================================
+
+The other options can be displayed with this command:
+
+----------------------------------------
+$ cmake -LA
+----------------------------------------
+
+Or with Curses interface:
+
+----------------------------------------
+$ ccmake ..
+----------------------------------------
+
[[compile_with_autotools]]
Compile with autotools
^^^^^^^^^^^^^^^^^^^^^^
@@ -165,6 +274,13 @@ $ make
$ make install
----------------------------------------
+Options can be used for 'configure' script, they can be displayed with this
+command:
+
+----------------------------------------
+$ ./configure --help
+----------------------------------------
+
[[git_sources]]
Git sources
~~~~~~~~~~~
diff --git a/doc/fr/weechat_user.fr.txt b/doc/fr/weechat_user.fr.txt
index efc7f8873..2ff74a5bd 100644
--- a/doc/fr/weechat_user.fr.txt
+++ b/doc/fr/weechat_user.fr.txt
@@ -140,6 +140,115 @@ $ make
$ make install
----------------------------------------
+Des options peuvent être utilisées pour cmake, avec le format: "-DOPTION=VALUE".
+
+Liste des options couramment utilisées :
+
+[width="100%",cols="2m,2,2m,12",options="header"]
+|========================================
+| Option | Valeurs | Valeur par défaut | Description
+
+| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
+ Type de construction: `Debug` (ou `RelWithDebInfo`) est recommandé si vous
+ utilisez une version de développement de WeeChat.
+
+| PREFIX | répertoire | /usr/local |
+ Le répertoire dans lequel WeeChat sera installé.
+
+| WEECHAT_HOME | répertoire | ~/.weechat |
+ Le répertoire "maison" par défaut lors du lancement de WeeChat.
+
+| ENABLE_ALIAS | `ON`, `OFF` | ON |
+ Compiler <<alias_plugin,l'extension Alias>>.
+
+| ENABLE_ASPELL | `ON`, `OFF` | ON |
+ Compiler <<aspell_plugin,l'extension Aspell>>.
+
+| ENABLE_CHARSET | `ON`, `OFF` | ON |
+ Compiler <<charset_plugin,l'extension Charset>>.
+
+| ENABLE_DEMO | `ON`, `OFF` | OFF |
+ Compiler l'extension Demo.
+
+| ENABLE_DOC | `ON`, `OFF` | ON |
+ Compiler la documentation (cela prend beaucoup de temps, vous pouvez
+ désactiver pour accélérer la compilation).
+
+| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
+ Compiler <<aspell_plugin,l'extension Aspell>> avec Enchant.
+
+| ENABLE_FIFO | `ON`, `OFF` | ON |
+ Compiler <<fifo_plugin,l'extension Fifo>>.
+
+| ENABLE_GNUTLS | `ON`, `OFF` | ON |
+ Activer Gnutls (pour SSL).
+
+| ENABLE_GUILE | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Guile>> (Scheme).
+
+| ENABLE_IRC | `ON`, `OFF` | ON |
+ Compiler <<irc_plugin,l'extension IRC>>.
+
+| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
+ Support des gros fichiers.
+
+| ENABLE_LOGGER | `ON`, `OFF` | ON |
+ Compiler <<logger_plugin,l'extension Logger>>.
+
+| ENABLE_LUA | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Lua>>.
+
+| ENABLE_NCURSES | `ON`, `OFF` | ON |
+ Compiler l'interface Ncurses.
+
+| ENABLE_NLS | `ON`, `OFF` | ON |
+ Activer NLS (traductions).
+
+| ENABLE_PERL | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Perl>>.
+
+| ENABLE_PYTHON | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Python>>.
+
+| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
+ Compiler <<scripts_plugins,l'extension Python>> en utilisant Python 3 (*NON*
+ recommandé car beaucoup de scripts ne sont pas compatibles avec Python 3).
+
+| ENABLE_RELAY | `ON`, `OFF` | ON |
+ Compiler <<relay_plugin,l'extension Relay>>.
+
+| ENABLE_RMODIFIER | `ON`, `OFF` | ON |
+ Compiler <<rmodifier_plugin,l'extension Rmodifier>>.
+
+| ENABLE_RUBY | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Ruby>>.
+
+| ENABLE_SCRIPT | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Script>>.
+
+| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,les extensions de script>> (Python, Perl, Ruby,
+ Lua, Tcl, Guile).
+
+| ENABLE_TCL | `ON`, `OFF` | ON |
+ Compiler <<scripts_plugins,l'extension Tcl>>.
+
+| ENABLE_XFER | `ON`, `OFF` | ON |
+ Compiler <<xfer_plugin,l'extension Xfer>>.
+|========================================
+
+Les autres options peuvent être affichées avec cette commande :
+
+----------------------------------------
+$ cmake -LA
+----------------------------------------
+
+Ou avec l'interface Curses :
+
+----------------------------------------
+$ ccmake ..
+----------------------------------------
+
[[compile_with_autotools]]
Compilation avec autotools
^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -169,6 +278,13 @@ $ make
$ make install
----------------------------------------
+Des options peuvent être utilisées pour le script 'configure', elles peuvent
+être affichées avec cette commande :
+
+----------------------------------------
+$ ./configure --help
+----------------------------------------
+
[[git_sources]]
Sources Git
~~~~~~~~~~~
diff --git a/doc/it/weechat_user.it.txt b/doc/it/weechat_user.it.txt
index c3fbc35ff..cac7d2af5 100644
--- a/doc/it/weechat_user.it.txt
+++ b/doc/it/weechat_user.it.txt
@@ -145,6 +145,118 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for cmake, with format: "-DOPTION=VALUE".
+
+// TRANSLATION MISSING
+List of commonly used options:
+
+// TRANSLATION MISSING
+[width="100%",cols="2m,2,2m,12",options="header"]
+|========================================
+| Option | Values | Default value | Description
+
+| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
+ The type of build: `Debug` (or `RelWithDebInfo`) is recommended if you are
+ running development version of WeeChat.
+
+| PREFIX | directory | /usr/local |
+ The directory where WeeChat will be installed.
+
+| WEECHAT_HOME | directory | ~/.weechat |
+ The default home directory when running WeeChat.
+
+| ENABLE_ALIAS | `ON`, `OFF` | ON |
+ Compile <<alias_plugin,Alias plugin>>.
+
+| ENABLE_ASPELL | `ON`, `OFF` | ON |
+ Compile <<aspell_plugin,Aspell plugin>>.
+
+| ENABLE_CHARSET | `ON`, `OFF` | ON |
+ Compile <<charset_plugin,Charset plugin>>.
+
+| ENABLE_DEMO | `ON`, `OFF` | OFF |
+ Compile Demo plugin.
+
+| ENABLE_DOC | `ON`, `OFF` | ON |
+ Compile documentation (it takes a long time, you can turn off to speed up
+ the compilation).
+
+| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
+ Compile <<aspell_plugin,Aspell plugin>> with Enchant.
+
+| ENABLE_FIFO | `ON`, `OFF` | ON |
+ Compile <<fifo_plugin,Fifo plugin>>.
+
+| ENABLE_GNUTLS | `ON`, `OFF` | ON |
+ Enable Gnutls (for SSL).
+
+| ENABLE_GUILE | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Guile plugin>> (Scheme).
+
+| ENABLE_IRC | `ON`, `OFF` | ON |
+ Compile <<irc_plugin,IRC plugin>>.
+
+| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
+ Support of large files.
+
+| ENABLE_LOGGER | `ON`, `OFF` | ON |
+ Compile <<logger_plugin,Logger plugin>>.
+
+| ENABLE_LUA | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Lua plugin>>.
+
+| ENABLE_NCURSES | `ON`, `OFF` | ON |
+ Compile Ncurses interface.
+
+| ENABLE_NLS | `ON`, `OFF` | ON |
+ Enable NLS (translations).
+
+| ENABLE_PERL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Perl plugin>>.
+
+| ENABLE_PYTHON | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Python plugin>>.
+
+| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
+ Compile <<scripts_plugins,Python plugin>> using Python 3 (*NOT* recommended
+ because many scripts are not compatible with Python 3).
+
+| ENABLE_RELAY | `ON`, `OFF` | ON |
+ Compile <<relay_plugin,Relay plugin>>.
+
+| ENABLE_RMODIFIER | `ON`, `OFF` | ON |
+ Compile <<rmodifier_plugin,Rmodifier plugin>>.
+
+| ENABLE_RUBY | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Ruby plugin>>.
+
+| ENABLE_SCRIPT | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Script plugin>>.
+
+| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,script plugins>> (Python, Perl, Ruby, Lua, Tcl,
+ Guile).
+
+| ENABLE_TCL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Tcl plugin>>.
+
+| ENABLE_XFER | `ON`, `OFF` | ON |
+ Compile <<xfer_plugin,Xfer plugin>>.
+|========================================
+
+The other options can be displayed with this command:
+
+----------------------------------------
+$ cmake -LA
+----------------------------------------
+
+Or with Curses interface:
+
+----------------------------------------
+$ ccmake ..
+----------------------------------------
+
[[compile_with_autotools]]
Compilazione con autotools
^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -173,6 +285,14 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for 'configure' script, they can be displayed with this
+command:
+
+----------------------------------------
+$ ./configure --help
+----------------------------------------
+
[[git_sources]]
Sorgenti git
~~~~~~~~~~~~
diff --git a/doc/ja/weechat_user.ja.txt b/doc/ja/weechat_user.ja.txt
index b5f482a8f..67128f452 100644
--- a/doc/ja/weechat_user.ja.txt
+++ b/doc/ja/weechat_user.ja.txt
@@ -130,6 +130,118 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for cmake, with format: "-DOPTION=VALUE".
+
+// TRANSLATION MISSING
+List of commonly used options:
+
+// TRANSLATION MISSING
+[width="100%",cols="2m,2,2m,12",options="header"]
+|========================================
+| Option | Values | Default value | Description
+
+| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
+ The type of build: `Debug` (or `RelWithDebInfo`) is recommended if you are
+ running development version of WeeChat.
+
+| PREFIX | directory | /usr/local |
+ The directory where WeeChat will be installed.
+
+| WEECHAT_HOME | directory | ~/.weechat |
+ The default home directory when running WeeChat.
+
+| ENABLE_ALIAS | `ON`, `OFF` | ON |
+ Compile <<alias_plugin,Alias plugin>>.
+
+| ENABLE_ASPELL | `ON`, `OFF` | ON |
+ Compile <<aspell_plugin,Aspell plugin>>.
+
+| ENABLE_CHARSET | `ON`, `OFF` | ON |
+ Compile <<charset_plugin,Charset plugin>>.
+
+| ENABLE_DEMO | `ON`, `OFF` | OFF |
+ Compile Demo plugin.
+
+| ENABLE_DOC | `ON`, `OFF` | ON |
+ Compile documentation (it takes a long time, you can turn off to speed up
+ the compilation).
+
+| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
+ Compile <<aspell_plugin,Aspell plugin>> with Enchant.
+
+| ENABLE_FIFO | `ON`, `OFF` | ON |
+ Compile <<fifo_plugin,Fifo plugin>>.
+
+| ENABLE_GNUTLS | `ON`, `OFF` | ON |
+ Enable Gnutls (for SSL).
+
+| ENABLE_GUILE | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Guile plugin>> (Scheme).
+
+| ENABLE_IRC | `ON`, `OFF` | ON |
+ Compile <<irc_plugin,IRC plugin>>.
+
+| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
+ Support of large files.
+
+| ENABLE_LOGGER | `ON`, `OFF` | ON |
+ Compile <<logger_plugin,Logger plugin>>.
+
+| ENABLE_LUA | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Lua plugin>>.
+
+| ENABLE_NCURSES | `ON`, `OFF` | ON |
+ Compile Ncurses interface.
+
+| ENABLE_NLS | `ON`, `OFF` | ON |
+ Enable NLS (translations).
+
+| ENABLE_PERL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Perl plugin>>.
+
+| ENABLE_PYTHON | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Python plugin>>.
+
+| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
+ Compile <<scripts_plugins,Python plugin>> using Python 3 (*NOT* recommended
+ because many scripts are not compatible with Python 3).
+
+| ENABLE_RELAY | `ON`, `OFF` | ON |
+ Compile <<relay_plugin,Relay plugin>>.
+
+| ENABLE_RMODIFIER | `ON`, `OFF` | ON |
+ Compile <<rmodifier_plugin,Rmodifier plugin>>.
+
+| ENABLE_RUBY | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Ruby plugin>>.
+
+| ENABLE_SCRIPT | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Script plugin>>.
+
+| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,script plugins>> (Python, Perl, Ruby, Lua, Tcl,
+ Guile).
+
+| ENABLE_TCL | `ON`, `OFF` | ON |
+ Compile <<scripts_plugins,Tcl plugin>>.
+
+| ENABLE_XFER | `ON`, `OFF` | ON |
+ Compile <<xfer_plugin,Xfer plugin>>.
+|========================================
+
+The other options can be displayed with this command:
+
+----------------------------------------
+$ cmake -LA
+----------------------------------------
+
+Or with Curses interface:
+
+----------------------------------------
+$ ccmake ..
+----------------------------------------
+
[[compile_with_autotools]]
==== autotools によるコンパイル ====
@@ -156,6 +268,14 @@ $ make
$ make install
----------------------------------------
+// TRANSLATION MISSING
+Options can be used for 'configure' script, they can be displayed with this
+command:
+
+----------------------------------------
+$ ./configure --help
+----------------------------------------
+
[[git_sources]]
==== Git ソース ====