X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=README;h=37eee3eaeb2f51004ec9791532edda1fc9347564;hb=3e5c93f05cbea0639b8401b7a6e6f382ca6aad1f;hp=56dee295733b0459e38051e029b7ba4937abe2a8;hpb=09c6d16ffba1b1b15e50579bbcf663f05f630932;p=collectd.git diff --git a/README b/README index 56dee295..37eee3ea 100644 --- a/README +++ b/README @@ -306,6 +306,29 @@ Prerequisites particular. +Configuring / Compiling / Installing +------------------------------------ + + To configure, build and install collectd with the default settings, run + `./configure && make && make install'. For detailed, generic instructions + see INSTALL. For a complete list of configure options and their description, + run `./configure --help'. + + By default, the configure script will check for all build dependencies and + disable all plugins whose requirements cannot be fulfilled (any other plugin + will be enabled). To enable a plugin, install missing dependencies (see + section `Prerequisites' above) and rerun `configure'. If you specify the + `--enable-' configure option, you can force the plugin to be built. + This will most likely fail though unless you're working in a very unusual + setup and you really know what you're doing. + + By default, collectd will be installed into `/opt/collectd'. You can adjust + this setting by specifying the `--prefix' configure option - see INSTALL for + details. If you pass DESTDIR= to `make install', will be + prefixed to all installation directories. This might be useful when creating + packages for collectd. + + Crosscompiling --------------