Changeset 1fd6a94503a42e517cc2bbcb194391d6e7052939
- Timestamp:
- 09/13/07 23:25:01
(10 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1189718701 +0000
- git-parent:
[3c80258576da980b4ac67012b2ebc48f73994910]
- git-author:
- Rafaël Carré <funman@videolan.org> 1189718701 +0000
- Message:
bootstrap: print a success message
unify errors on missing/too old tools
remove insulting and not used variables
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r38e8690 |
r1fd6a94 |
|
| 29 | 29 | ## Check for various tools |
|---|
| 30 | 30 | ## |
|---|
| 31 | | AUTOMAKESUCKS=no |
|---|
| 32 | | INSTALLSUCKS=no |
|---|
| 33 | 31 | |
|---|
| 34 | 32 | ACLOCAL_ARGS="-I m4 ${ACLOCAL_ARGS}" |
|---|
| … | … | |
| 65 | 63 | case "$(autoconf --version|head -n 1)" in |
|---|
| 66 | 64 | *2.5[012345678]*) |
|---|
| 67 | | echo "Hey, your autoconf is quite old. Update it." >&2 |
|---|
| | 65 | echo "$0: you need autoconf version 2.59 or later (2.60 recommanded)." |
|---|
| 68 | 66 | exit 1 |
|---|
| 69 | 67 | ;; |
|---|
| … | … | |
| 71 | 69 | *2.59*) |
|---|
| 72 | 70 | echo "Enabling provisional autoconf 2.59 work-around. Update autoconf ASAP." |
|---|
| | 71 | echo "Press Enter to continue" |
|---|
| | 72 | read |
|---|
| 73 | 73 | cp -f extras/m4/autoconf260.m4 m4/ |
|---|
| 74 | 74 | ;; |
|---|
| … | … | |
| 128 | 128 | fi;else |
|---|
| 129 | 129 | set +x |
|---|
| 130 | | echo "you need gettextize (package gettext-devel or gettext)" |
|---|
| | 130 | echo "$0: you need gettextize (package gettext-devel or gettext)" |
|---|
| 131 | 131 | exit 1 |
|---|
| 132 | 132 | fi |
|---|
| … | … | |
| 272 | 272 | fi |
|---|
| 273 | 273 | |
|---|
| | 274 | echo "Successfully bootstrapped" |
|---|