Changeset 0df46599e8bb39ff2c4c7f8e9ee77fd7c6ec1916

Show
Ignore:
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
  • HACKING

    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 $ 
    22 
    33Hacking vlc 
     
    88 - autoconf version 2.13 or later 
    99 - automake version 1.4 or later 
    10  - gettext version 0.11.5 or later 
     10 - gettext version 0.10.4 or later 
    1111 
    1212After retrieving the CVS tree, you need to run the bootstrap script to 
  • Makefile.am

    r764176f r0df4659  
    44ACLOCAL_AMFLAGS = -I m4 
    55 
    6 EXTRA_DIST = config.rpath mkinstalldirs  config.rpath 
     6EXTRA_DIST = config.rpath mkinstalldirs 
  • bootstrap

    reb395af r0df4659  
    22 
    33##  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 $ 
    55## 
    66##  Authors: Samuel Hocevar <sam@zoy.org> 
     
    3030###  classic stuff 
    3131### 
    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~ 
     32rm -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~ 
    3333 
    3434aclocal 
    3535autoheader 
    36 gettextize --force --intl --copy --no-changelog 
     36 
     37# run gettextize and then fix its cruft 
     38gettextize --force --intl --copy --no-changelog || gettextize --force --copy 
    3739test -f configure.in~ && mv configure.in~ configure.in 
    3840test -f Makefile.am~ && mv Makefile.am~ Makefile.am 
     41test -f ChangeLog~ && mv ChangeLog~ ChangeLog 
     42test -f po/ChangeLog~ && mv po/ChangeLog~ po/ChangeLog 
     43 
    3944automake --foreign --add-missing --copy 
    4045autoconf