diff options
Diffstat (limited to 'INSTALL.BZR')
| -rw-r--r-- | INSTALL.BZR | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/INSTALL.BZR b/INSTALL.BZR index 710a73c7048..3859e3cd4fc 100644 --- a/INSTALL.BZR +++ b/INSTALL.BZR | |||
| @@ -4,14 +4,29 @@ See the end of the file for license conditions. | |||
| 4 | 4 | ||
| 5 | Building and Installing Emacs from Bazaar | 5 | Building and Installing Emacs from Bazaar |
| 6 | 6 | ||
| 7 | If this is the first time you go through it, you'll need to configure | 7 | Building Emacs from Bazaar requires some tools that are not needed |
| 8 | before bootstrapping: | 8 | when building from a release. You will need: |
| 9 | 9 | ||
| 10 | $ ./configure | 10 | autoconf - at least the version specified near the start of |
| 11 | configure.in (in the AC_PREREQ command). | ||
| 12 | automake - we recommend at least version 1.11. | ||
| 13 | makeinfo - not strictly necessary, but highly recommended, so that | ||
| 14 | you can build the manuals. | ||
| 15 | |||
| 16 | The `autogen.sh' script can help you figure out if you have the | ||
| 17 | necessary tools. | ||
| 18 | |||
| 19 | The first time you build, there are a couple of extra steps. | ||
| 20 | First, generate the `configure' script: | ||
| 21 | |||
| 22 | $ ./autogen.sh | ||
| 11 | 23 | ||
| 12 | (Normally there is no need to run `autoconf' etc. If you do need it, | 24 | (or you can just run `autoreconf -I m4'). |
| 13 | the relevant command is `autoreconf -I m4'. Be aware that this will | 25 | |
| 14 | likely lead to conflicts next time you update from Bazaar.) | 26 | You can then configure your build (use `./configure --help' to see |
| 27 | options you can set): | ||
| 28 | |||
| 29 | $ ./configure | ||
| 15 | 30 | ||
| 16 | Some of the files that are included in the Emacs tarball, such as | 31 | Some of the files that are included in the Emacs tarball, such as |
| 17 | byte-compiled Lisp files, are not stored in Bazaar. Therefore, to | 32 | byte-compiled Lisp files, are not stored in Bazaar. Therefore, to |