Changeset ad9f50ce8d53e4256d68ab149b6797b9e8bd15d7

Show
Ignore:
Timestamp:
11/17/05 19:27:36 (3 years ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1132252056 +0000
git-parent:

[f53914b68e8bc84c7833d0a265fb3bb81a7fbe2f]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1132252056 +0000
Message:

Document the new win32 contrib way.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • INSTALL.win32

    r7965498 rad9f50c  
    8989external libraries. 
    9090 
    91 They can be found here (source code): 
    92 http://download.videolan.org/pub/testing/contrib/ 
    93  
    94 We also provide a package with all the libraries already compiled so it is 
    95 actually really easy to compile a full-featured version of vlc (these compiled 
    96 libraries will only work with mingw or cygwin): 
    97 http://download.videolan.org/pub/testing/win32/contrib-20040902-win32-bin-gcc3.3.1-only.tar.bz2 (Check out fo more recent versions at the same location).  
    98  
    99 All you need to do is extract it in your root directory (the include files 
    100 and libraries will be put in /usr/win32). You can do this with the following 
    101 command:  
    102  
    103   tar xjvf contrib-20040902-win32-bin-gcc3.3.1-only.tar.bz2 -C / 
    104  
    105 Please note the "-C /".  
     91* They can be found here (source code): 
     92  http://download.videolan.org/pub/testing/contrib/ 
     93 
     94* We also provide a package with all the libraries already compiled so it is 
     95  actually really easy to compile a full-featured version of vlc (these compiled 
     96  libraries will only work with mingw or cygwin): 
     97  http://download.videolan.org/pub/testing/win32/contrib-20040902-win32-bin-gcc3.3.1-only.tar.bz2 (Check out fo more recent versions at the same location).  
     98 
     99  All you need to do is extract it in your root directory (the include files 
     100  and libraries will be put in /usr/win32). You can do this with the following 
     101  command:  
     102 
     103    tar xjvf contrib-20040902-win32-bin-gcc3.3.1-only.tar.bz2 -C / 
     104 
     105  Please note the "-C /".  
     106 
     107* An automated way of building the contrib libraries is provided in  
     108  extra/contrib. It will download, configure and build the libraries. 
     109  See the extras/contrib/README for more info. 
    106110 
    107111A complete list of the libraries on which we depend can be found here: 
     
    213217      --enable-debug 
    214218 
     219If you have used the "extras/contrib" way, you don't need to precise  
     220the CFLAGS, LDFLAGS and --with-foo-config-path=. 
     221 ./bootstrap && \ 
     222  ./configure \ 
     223      --disable-gtk \ 
     224      --enable-nls --enable-sdl \ 
     225      --enable-ffmpeg --enable-faad --enable-flac --enable-theora \ 
     226      --disable-cddax --disable-vcdx --enable-goom \ 
     227      --enable-twolame --enable-dvdread \ 
     228      --enable-mkv --enable-caca \ 
     229      --enable-debug 
     230 
     231 
    215232See `./configure --help' for more information. 
    216233 
  • extras/contrib/README

    r861453b rad9f50c  
    11This is the contrib build system for VLC Media Player. It has been 
    2 primarily developed for Mac OS X, though it should be easy to adapt to 
    3 other operating systems
     2primarily developed for Mac, it has been adapted for BeOs and win32. 
     3It would be not too difficult to extend it to other sytem
    44 
    55To use it, first in the contrib directory, type : 
     
    2020Once the contribs are built, you can start building VLC. 
    2121See: http://developers.videolan.org/vlc/osx-compile.html  
    22 for more details on that. 
     22or INSTALL.win32 for more details on that. 
    2323 
    2424Happy hacking.