Changeset 5b57fae4bc4f10c13ca88e56a529a97f3f4e566b
- 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
| rbc07639 |
r5b57fae |
|
| 17 | 17 | You will need the following tools if you plan to use the SVN version of vlc: |
|---|
| 18 | 18 | |
|---|
| 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) |
|---|
| 26 | 24 | |
|---|
| 27 | 25 | After retrieving the SVN tree, you need to run the bootstrap script to |
|---|
| r6662b32 |
r5b57fae |
|
| 17 | 17 | A typical way to configure VLC is: |
|---|
| 18 | 18 | |
|---|
| 19 | | ./configure --prefix=/usr --enable-wxwidgets |
|---|
| | 19 | ./configure --prefix=/usr |
|---|
| 20 | 20 | |
|---|
| 21 | 21 | See `./configure --help' for more information. |
|---|
| … | … | |
| 24 | 24 | symbols: |
|---|
| 25 | 25 | |
|---|
| 26 | | make distclean ; ./configure --prefix=/usr --enable-wxwidgets --enable-debug |
|---|
| | 26 | make distclean ; ./configure --prefix=/usr --enable-debug |
|---|
| 27 | 27 | |
|---|
| 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 |
|---|
| | 28 | We recommend using GCC to build VLC, though some people reported success |
|---|
| | 29 | with the Intel C compiler (version 8) as well. GCC version 3.3 or higher is |
|---|
| | 30 | required. On older systems (e.g. FreeBSD 4.x, BeOS), please select a more |
|---|
| | 31 | recent version manually by setting the CC and CXX environment variables |
|---|
| 33 | 32 | appropriately while running the ./configure shell script. |
|---|
| 34 | 33 | |
|---|
| … | … | |
| 36 | 35 | Building VLC |
|---|
| 37 | 36 | ============ |
|---|
| 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. |
|---|
| 42 | 37 | |
|---|
| 43 | 38 | Once configured, run `make' to build VLC. |
|---|