diff options
author | Lukas Larsson <[email protected]> | 2013-09-02 16:14:11 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-09-02 16:21:24 +0200 |
commit | b5a8aefd0bfa04ea770a9ec869cd079c37278629 (patch) | |
tree | a9f147de95550488056810342176c891253e93e6 /HOWTO | |
parent | e946b152f3b8c5a31b3096a733c6387d9681f0c5 (diff) | |
parent | 1477aa1a8b78a806ae6b815e16776a64cf6fbc6e (diff) | |
download | otp-b5a8aefd0bfa04ea770a9ec869cd079c37278629.tar.gz otp-b5a8aefd0bfa04ea770a9ec869cd079c37278629.tar.bz2 otp-b5a8aefd0bfa04ea770a9ec869cd079c37278629.zip |
Merge branch 'maint'
* maint:
Refactor and change EXTRA_APPLICATIONS to use ls
Add configure option --without-$app
Conflicts:
HOWTO/INSTALL.md
lib/Makefile
Diffstat (limited to 'HOWTO')
-rw-r--r-- | HOWTO/INSTALL.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/HOWTO/INSTALL.md b/HOWTO/INSTALL.md index 9ea50ce86c..2eb12f3b2d 100644 --- a/HOWTO/INSTALL.md +++ b/HOWTO/INSTALL.md @@ -308,6 +308,12 @@ Some of the available `configure` options are: If your nif/driver depends on some other dynamic library, you now have to link that to the Erlang VM binary. This is easily achived by passing `LIBS=-llibname` to configure. +* `--without-$app` - By default all applications in Erlang/OTP will be included + in a release. If this is not wanted it is possible to specify that Erlang/OTP + should be compiled without that applications, i.e. `--without-wx`. There is + no automatic dependency handling inbetween applications. So if you disable + an application that another depends on, you also have to disable the + dependant application. If you or your system has special requirements please read the `Makefile` for additional configuration information. |