Changeset 8cdab6d5972fbfcb5fd1876099878146c4493d0e
- Timestamp:
- 08/26/02 23:46:06
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1030398366 +0000
- git-parent:
[e3401d578754e7fd0dd49ba18b95b527420f1630]
- git-author:
- Sam Hocevar <sam@videolan.org> 1030398366 +0000
- Message:
- ./bootstrap: another fix for old versions of autoconf which don't seem
to like the gettext m4 files.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re3401d5 |
r8cdab6d |
|
| 2 | 2 | |
|---|
| 3 | 3 | ## bootstrap.sh file for vlc, the VideoLAN Client |
|---|
| 4 | | ## $Id: bootstrap,v 1.4 2002/08/26 20:49:49 sam Exp $ |
|---|
| | 4 | ## $Id: bootstrap,v 1.5 2002/08/26 21:46:06 sam Exp $ |
|---|
| 5 | 5 | ## |
|---|
| 6 | 6 | ## Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 45 | 45 | test -f po/ChangeLog~ && mv po/ChangeLog~ po/ChangeLog |
|---|
| 46 | 46 | mkdir -p m4 |
|---|
| | 47 | # Yuck! - don't copy anything, it makes old autoconf barf. |
|---|
| | 48 | #for file in codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 \ |
|---|
| | 49 | # lcmessage.m4 progtest.m4 |
|---|
| | 50 | # do cp ${aclocaldir}/${file} m4/ |
|---|
| | 51 | #done |
|---|
| 47 | 52 | # Yuck! |
|---|
| 48 | | for file in codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 \ |
|---|
| 49 | | lcmessage.m4 progtest.m4 |
|---|
| 50 | | do cp ${aclocaldir}/${file} m4/ |
|---|
| 51 | | done |
|---|
| 52 | | # Yuck! |
|---|
| 53 | | echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' >> m4/gettext.m4 |
|---|
| | 53 | echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/gettext.m4 |
|---|
| 54 | 54 | fi |
|---|
| 55 | 55 | |
|---|
| 56 | 56 | aclocal -I m4 |
|---|
| | 57 | autoheader |
|---|
| 57 | 58 | automake --foreign --add-missing --copy |
|---|
| 58 | 59 | autoconf |
|---|
| 59 | | autoheader |
|---|
| 60 | 60 | |
|---|
| 61 | 61 | # nuahahahahaha !! overwriting Makefile.in with what *I* want! |
|---|