Changeset 5b57fae4bc4f10c13ca88e56a529a97f3f4e566b

Show
Ignore:
Timestamp:
03/11/07 11:44:48 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1173609888 +0000
git-parent:

[75e6d52d220dc8a1a19c88c1121781a898567c9e]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1173609888 +0000
Message:

Long overdue update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • HACKING

    rbc07639 r5b57fae  
    1717You will need the following tools if you plan to use the SVN version of vlc: 
    1818 
    19  - autoconf version 2.50 or later 
    20  
    21  - automake version 1.5 (but 1.6 or later is recommended) 
    22  
    23  - gettext version 0.10.40 (but 0.11.3 or later is recommended) 
    24  
    25  - perl version 5.005 or later 
     19 - Autoconf version 2.60 or later 
     20 - Automake version 1.9 or later 
     21 - gettext version 0.11.5 or later 
     22 - pkg-config 
     23 - libgcrypt 1.2 (or compatible) 
    2624 
    2725After retrieving the SVN tree, you need to run the bootstrap script to 
  • INSTALL

    r6662b32 r5b57fae  
    1717A typical way to configure VLC is: 
    1818 
    19    ./configure --prefix=/usr --enable-wxwidgets 
     19   ./configure --prefix=/usr 
    2020 
    2121See `./configure --help' for more information. 
     
    2424symbols: 
    2525 
    26    make distclean ; ./configure --prefix=/usr --enable-wxwidgets --enable-debug 
     26   make distclean ; ./configure --prefix=/usr --enable-debug 
    2727 
    28 We recommend using GCC (versions 3.3 or later) to build VLC, though some 
    29 people reported success with the Intel C compiler (version 8) as well. As of 
    30 VLC version 0.9.0, GCC 2.95 is not supported anymore; if this is the default 
    31 compiler on your system (e.g. FreeBSD 4.x), please select a more recent 
    32 version manually by setting the CC and CXX environment variables 
     28We recommend using GCC to build VLC, though some people reported success 
     29with the Intel C compiler (version 8) as well. GCC version 3.3 or higher is 
     30required. On older systems (e.g. FreeBSD 4.x, BeOS), please select a more 
     31recent version manually by setting the CC and CXX environment variables 
    3332appropriately while running the ./configure shell script. 
    3433 
     
    3635Building VLC 
    3736============ 
    38  
    39 Have a look at the generated Makefile.opts file, you may want to choose 
    40 which modules will be compiled as plugins, and which ones will remain in 
    41 the core application. The configure script tries to guess for you. 
    4237 
    4338Once configured, run `make' to build VLC.