Changeset ad9f50ce8d53e4256d68ab149b6797b9e8bd15d7
- 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
| r7965498 |
rad9f50c |
|
| 89 | 89 | external libraries. |
|---|
| 90 | 90 | |
|---|
| 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. |
|---|
| 106 | 110 | |
|---|
| 107 | 111 | A complete list of the libraries on which we depend can be found here: |
|---|
| … | … | |
| 213 | 217 | --enable-debug |
|---|
| 214 | 218 | |
|---|
| | 219 | If you have used the "extras/contrib" way, you don't need to precise |
|---|
| | 220 | the 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 | |
|---|
| 215 | 232 | See `./configure --help' for more information. |
|---|
| 216 | 233 | |
|---|
| r861453b |
rad9f50c |
|
| 1 | 1 | This 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. |
|---|
| | 2 | primarily developed for Mac, it has been adapted for BeOs and win32. |
|---|
| | 3 | It would be not too difficult to extend it to other sytem. |
|---|
| 4 | 4 | |
|---|
| 5 | 5 | To use it, first in the contrib directory, type : |
|---|
| … | … | |
| 20 | 20 | Once the contribs are built, you can start building VLC. |
|---|
| 21 | 21 | See: http://developers.videolan.org/vlc/osx-compile.html |
|---|
| 22 | | for more details on that. |
|---|
| | 22 | or INSTALL.win32 for more details on that. |
|---|
| 23 | 23 | |
|---|
| 24 | 24 | Happy hacking. |
|---|