Changeset 0df46599e8bb39ff2c4c7f8e9ee77fd7c6ec1916
- Timestamp:
- 26/08/02 11:38:20
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1030354700 +0000
- git-parent:
[b69c9ce1279a154a8bbbe35b16a7bc7480cd967b]
- git-author:
- Sam Hocevar <sam@videolan.org> 1030354700 +0000
- Message:
- ./bootstrap: dropped the dependency on gettext 0.11.5. Now 0.10.4 is OK.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r764176f |
r0df4659 |
|
| 1 | | $Id: HACKING,v 1.1 2002/08/25 23:18:04 sam Exp $ |
|---|
| | 1 | $Id: HACKING,v 1.2 2002/08/26 09:38:19 sam Exp $ |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | Hacking vlc |
|---|
| … | … | |
| 8 | 8 | - autoconf version 2.13 or later |
|---|
| 9 | 9 | - automake version 1.4 or later |
|---|
| 10 | | - gettext version 0.11.5 or later |
|---|
| | 10 | - gettext version 0.10.4 or later |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | After retrieving the CVS tree, you need to run the bootstrap script to |
|---|
| r764176f |
r0df4659 |
|
| 4 | 4 | ACLOCAL_AMFLAGS = -I m4 |
|---|
| 5 | 5 | |
|---|
| 6 | | EXTRA_DIST = config.rpath mkinstalldirs config.rpath |
|---|
| | 6 | EXTRA_DIST = config.rpath mkinstalldirs |
|---|
| reb395af |
r0df4659 |
|
| 2 | 2 | |
|---|
| 3 | 3 | ## bootstrap.sh file for vlc, the VideoLAN Client |
|---|
| 4 | | ## $Id: bootstrap,v 1.2 2002/08/26 01:01:13 sam Exp $ |
|---|
| | 4 | ## $Id: bootstrap,v 1.3 2002/08/26 09:38:20 sam Exp $ |
|---|
| 5 | 5 | ## |
|---|
| 6 | 6 | ## Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 30 | 30 | ### classic stuff |
|---|
| 31 | 31 | ### |
|---|
| 32 | | rm -f aclocal.m4 configure config.guess config.log config.sub ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh configure.in~ Makefile.am~ |
|---|
| | 32 | rm -f aclocal.m4 configure config.guess config.log config.sub ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh configure.in~ Makefile.am~ ChangeLog~ po/ChangeLog~ |
|---|
| 33 | 33 | |
|---|
| 34 | 34 | aclocal |
|---|
| 35 | 35 | autoheader |
|---|
| 36 | | gettextize --force --intl --copy --no-changelog |
|---|
| | 36 | |
|---|
| | 37 | # run gettextize and then fix its cruft |
|---|
| | 38 | gettextize --force --intl --copy --no-changelog || gettextize --force --copy |
|---|
| 37 | 39 | test -f configure.in~ && mv configure.in~ configure.in |
|---|
| 38 | 40 | test -f Makefile.am~ && mv Makefile.am~ Makefile.am |
|---|
| | 41 | test -f ChangeLog~ && mv ChangeLog~ ChangeLog |
|---|
| | 42 | test -f po/ChangeLog~ && mv po/ChangeLog~ po/ChangeLog |
|---|
| | 43 | |
|---|
| 39 | 44 | automake --foreign --add-missing --copy |
|---|
| 40 | 45 | autoconf |
|---|