Changeset 2d8a1a708547e450068546985ea4c7ec65a6bc4c
- Timestamp:
- 08/27/02 16:15:24
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1030457724 +0000
- git-parent:
[685f8edcc3e7bfa3e3a40fd15ecec75c4e01b565]
- git-author:
- Sam Hocevar <sam@videolan.org> 1030457724 +0000
- Message:
- ./HACKING: we can now use automake-1.5 instead of automake-1.6. But now
we _really_ depend on it.
- ./bootstrap: we don't use touch to create a file, because it doesn't seem
to work everywhere.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| reb395af |
r2d8a1a7 |
|
| 2 | 2 | m4 |
|---|
| 3 | 3 | intl |
|---|
| | 4 | ABOUT-NLS |
|---|
| 4 | 5 | core |
|---|
| 5 | 6 | core.* |
|---|
| … | … | |
| 14 | 15 | config.guess |
|---|
| 15 | 16 | config.sub |
|---|
| | 17 | autom4te.cache |
|---|
| 16 | 18 | Makefile |
|---|
| 17 | 19 | Makefile.in |
|---|
| re3401d5 |
r2d8a1a7 |
|
| 1 | | $Id: HACKING,v 1.3 2002/08/26 20:49:49 sam Exp $ |
|---|
| | 1 | $Id: HACKING,v 1.4 2002/08/27 14:15:24 sam Exp $ |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | Hacking vlc |
|---|
| … | … | |
| 7 | 7 | |
|---|
| 8 | 8 | - autoconf version 2.50 or later |
|---|
| 9 | | - automake version 1.6 or later |
|---|
| 10 | | - gettext version 0.10.4 or later |
|---|
| | 9 | - automake version 1.5 (but 1.6 is recommended) |
|---|
| | 10 | - gettext version 0.10.40 (but 0.11.3 or later is recommended) |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | After retrieving the CVS tree, you need to run the bootstrap script to |
|---|
| r685f8ed |
r2d8a1a7 |
|
| 2 | 2 | |
|---|
| 3 | 3 | ## bootstrap.sh file for vlc, the VideoLAN Client |
|---|
| 4 | | ## $Id: bootstrap,v 1.6 2002/08/26 23:36:20 sam Exp $ |
|---|
| | 4 | ## $Id: bootstrap,v 1.7 2002/08/27 14:15:24 sam Exp $ |
|---|
| 5 | 5 | ## |
|---|
| 6 | 6 | ## Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 51 | 51 | #done |
|---|
| 52 | 52 | # Yuck! |
|---|
| 53 | | touch m4/Makefile.am |
|---|
| | 53 | echo > m4/Makefile.am |
|---|
| 54 | 54 | # Yuck! |
|---|
| 55 | 55 | echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/gettext.m4 |
|---|
| 56 | 56 | fi |
|---|
| 57 | 57 | |
|---|
| 58 | | aclocal -I m4 |
|---|
| | 58 | aclocal-1.6 -I m4 || aclocal-1.5 -I m4 |
|---|
| 59 | 59 | autoheader |
|---|
| 60 | | automake --foreign --add-missing --copy |
|---|
| | 60 | automake-1.6 --foreign --add-missing --copy \ |
|---|
| | 61 | || automake-1.5 --foreign --add-missing --copy |
|---|
| 61 | 62 | autoconf |
|---|
| 62 | 63 | |
|---|