Changeset 2d8a1a708547e450068546985ea4c7ec65a6bc4c

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

    reb395af r2d8a1a7  
    22m4 
    33intl 
     4ABOUT-NLS 
    45core 
    56core.* 
     
    1415config.guess 
    1516config.sub 
     17autom4te.cache 
    1618Makefile 
    1719Makefile.in 
  • HACKING

    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 $ 
    22 
    33Hacking vlc 
     
    77 
    88 - 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) 
    1111 
    1212After retrieving the CVS tree, you need to run the bootstrap script to 
  • bootstrap

    r685f8ed r2d8a1a7  
    22 
    33##  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 $ 
    55## 
    66##  Authors: Samuel Hocevar <sam@zoy.org> 
     
    5151  #done 
    5252  # Yuck! 
    53   touch m4/Makefile.am 
     53  echo > m4/Makefile.am 
    5454  # Yuck! 
    5555  echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/gettext.m4 
    5656fi 
    5757 
    58 aclocal -I m4 
     58aclocal-1.6 -I m4 || aclocal-1.5 -I m4 
    5959autoheader 
    60 automake --foreign --add-missing --copy 
     60automake-1.6 --foreign --add-missing --copy \ 
     61  || automake-1.5 --foreign --add-missing --copy 
    6162autoconf 
    6263