| 1 |
-*- outline -*- |
|---|
| 2 |
|
|---|
| 3 |
These notes intend to help people working on the checked-out sources. |
|---|
| 4 |
These requirements do not apply when building from a distribution tarball. |
|---|
| 5 |
|
|---|
| 6 |
* Requirements |
|---|
| 7 |
|
|---|
| 8 |
Only the sources are installed in the GIT repository (to ease the |
|---|
| 9 |
maintenance, merges etc.), therefore you will have to get the latest |
|---|
| 10 |
stable versions of the maintainer tools we depend upon, including: |
|---|
| 11 |
|
|---|
| 12 |
- Automake <http://www.gnu.org/software/automake/> |
|---|
| 13 |
- Autoconf <http://www.gnu.org/software/autoconf/> |
|---|
| 14 |
- Gettext <http://www.gnu.org/software/gettext/> |
|---|
| 15 |
- Gzip <http://www.gnu.org/software/gzip/> |
|---|
| 16 |
- Libtool <http://www.gnu.org/software/libtool/> |
|---|
| 17 |
- Pkg-config <http://pkg-config.freedesktop.org/> |
|---|
| 18 |
- Tar <http://www.gnu.org/software/tar/> |
|---|
| 19 |
- Uuid-devel <http://e2fsprogs.sourceforge.net/> |
|---|
| 20 |
(Debian: uuid-dev, Red Hat: uuid-devel) |
|---|
| 21 |
- Wget <http://www.gnu.org/software/wget/> |
|---|
| 22 |
|
|---|
| 23 |
Valgrind <http://valgrind.org/> is also highly recommended, if |
|---|
| 24 |
Valgrind supports your architecture. |
|---|
| 25 |
|
|---|
| 26 |
Only building the initial full source tree will be a bit painful. |
|---|
| 27 |
Later, a plain `git-pull && make' should be sufficient. |
|---|
| 28 |
|
|---|
| 29 |
* First GIT checkout |
|---|
| 30 |
|
|---|
| 31 |
Obviously, if you are reading these notes, you did manage to check out |
|---|
| 32 |
this package from GIT. The next step is to get other files needed to |
|---|
| 33 |
build, which are extracted from other source packages: |
|---|
| 34 |
|
|---|
| 35 |
$ ./bootstrap |
|---|
| 36 |
|
|---|
| 37 |
And there you are! Just |
|---|
| 38 |
|
|---|
| 39 |
$ ./configure |
|---|
| 40 |
$ make |
|---|
| 41 |
$ make check |
|---|
| 42 |
|
|---|
| 43 |
At this point, there should be no difference between your local copy, |
|---|
| 44 |
and the GIT master copy: |
|---|
| 45 |
|
|---|
| 46 |
$ git-diff |
|---|
| 47 |
|
|---|
| 48 |
should output no difference. |
|---|
| 49 |
|
|---|
| 50 |
Enjoy! |
|---|
| 51 |
|
|---|
| 52 |
----- |
|---|
| 53 |
|
|---|
| 54 |
Copyright (C) 2002-2007 Free Software Foundation, Inc. |
|---|
| 55 |
|
|---|
| 56 |
This program is free software; you can redistribute it and/or modify |
|---|
| 57 |
it under the terms of the GNU General Public License as published by |
|---|
| 58 |
the Free Software Foundation; either version 3, or (at your option) |
|---|
| 59 |
any later version. |
|---|
| 60 |
|
|---|
| 61 |
This program is distributed in the hope that it will be useful, |
|---|
| 62 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 63 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 64 |
GNU General Public License for more details. |
|---|
| 65 |
|
|---|
| 66 |
You should have received a copy of the GNU General Public License |
|---|
| 67 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|