]> git.sesse.net Git - vlc/blob - INSTALL.win32
* configure.in: slight modifications to the last mingw32 build fix.
[vlc] / INSTALL.win32
1 INSTALL file for the Windows9x/2k/XP version of vlc, the VideoLAN Client
2
3 Running VideoLAN Client
4 =======================
5
6 If you have already built vlc (see below) or are using a binary release,
7 just run 'vlc.exe'.
8
9 You can also run vlc from a dos command box, in which case you'll be able
10 to use the command line arguments. You can obtain a list of these command
11 line arguments by typing 'vlc --help'.
12 To store a debug log of the current vlc session, you can use
13 'vlc -vvvvv --intf=logger nameofyourvideofile', but this will unfortunatly
14 disable the GUI. You will end-up with a vlc.log file in your current directory.
15
16 If you want to play a DVD, run vlc and click on the Disc option in the
17 interface. You then have to type your drive letter in the 'Device name'
18 box (eg. 'D' if this is the letter for your dvdrom drive).
19
20 Building VideoLAN Client from the source code
21 =============================================
22
23 If you want to do the tricky job of building vlc from sources, you can do it
24 in two ways:
25
26 - natively on Windows, using MSYS+MINGW (www.mingw.org)
27   (MSYS is a minimal build environnement to compile unixish projects under
28    windoze. It provides all the common unix tools like sh, gmake...)
29
30 - or on Linux, using the mingw32 cross-compiler
31
32 Getting the right tools
33 =======================
34
35 - cross-compiling with mingw32:
36 All the necessary tools you need can be found on the videolan web site:
37 http://www.videolan.org/vlc/windows.html
38
39 You first need to download a linux cross-compiler version of mingw32.
40 (for Debian GNU/Linux users, there is a mingw32 package)
41
42 You must also not forget to install the extra development packages if you want
43 to build the DirectX, GTK and SDL plugins.
44
45 - compiling natively on Windoze:
46 You will need to download and install the latest MSYS (version 1.0.7 as
47 of now) and MINGW.
48 The installation is really easy. Begin with the MSYS auto-installer and once
49 this is done, extract MINGW into c:\msys\1.0\mingw. You also have to remember
50 to remove the make utility included with MINGW as it conflicts with the one
51 from MSYS (just rename or remove c:\msys\1.0\mingw\bin\make.exe).
52
53 http://www.mingw.org/download.shtml
54 http://prdownloads.sourceforge.net/mingw/MSYS-1.0.7-i686-2.exe
55 http://prdownloads.sourceforge.net/mingw/MinGW-1.1.tar.gz
56
57 You must also not forget to install the extra development packages if you want
58 to build the DirectX, GTK and SDL plugins.
59 (http://www.videolan.org/vlc/windows.html)
60
61
62 NOTE: by default, the GTK package is configured to be installed in
63 /usr/local/gtk-win32, if you want to change this path, then you need to edit
64 the gtk-win32/bin/gtk-config file and change "gtk_dir=" accordingly.
65 The same is true for the SDL package, it is installed in
66 /usr/local/SDL-1.2.3-win32 by default and you need to change "prefix=" in 
67 SDL-1.2.3-win32/i386-mingw32msvc/bin/sdl-config if you plan to extract the
68 archive in a different directory.
69
70 Configuring the build
71 =====================
72
73 The best way to configure the build process of vlc is to use the
74 `./configure' script.
75
76 See `./configure --help' for more information.
77
78 If you are cross-compiling from Debian, you can use something
79 along those lines:
80
81   make distclean ; \
82   CC=i586-mingw32msvc-gcc \
83   ./configure --host=i586-mingw32msvc --build=i386-linux \
84   --with-gtk-config-path=/usr/local/gtk-win32/bin \
85   --with-sdl-config-path=/usr/local/SDL-1.2.3-win32/i386-mingw32msvc/bin \
86   --with-directx=/usr/local/dxheaders \
87   --with-dvdcss-tree=../libdvdcss-win
88
89 If you are cross-compiling using the mingw32 package provided by
90 www.videolan.org, you have to use something along those lines:
91
92   CC=i586-mingw32msvc-gcc \
93   PATH=/usr/local/cross-tools/bin:$PATH \
94   ./configure --host=i586-mingw32msvc --build=i386-linux \
95   --with-gtk-config-path=/usr/local/gtk-win32/bin \
96   --with-sdl-config-path=/usr/local/SDL-1.2.3-win32/i386-mingw32msvc/bin \
97   --with-directx=/usr/local/dxheaders \
98   --with-dvdcss-tree=../libdvdcss-win
99
100 If you are compiling natively on Windoze, then you can use something
101 along those lines:
102   ./configure \
103   --with-gtk-config-path=/c/dev/gtk-win32/bin \
104   --with-sdl-config-path=/c/dev/SDL-1.2.3-win32/i386-mingw32msvc/bin \
105   --with-directx=/c/dev/dxheaders \
106   --with-dvdcss-tree=../libdvdcss-win
107
108 Note: when using the --with-dvdcss-tree you need to compile the tree
109 beforehand.
110
111 Building VideoLAN Client
112 ========================
113
114 Have a look at the generated Makefile.opts file, you may want to choose
115 which modules will be compiled as plugins, and which ones will remain in
116 the core application. The configure script tries to guess for you.
117
118 Once configured, to build vlc you have to:
119
120 If you are cross-compiling from Debian or compiling natively on Windoze,
121 then just run `make'.
122
123 If you are cross-compiling using the mingw32 package provided by
124 www.videolan.org, run `PATH=/usr/local/cross-tools/bin:$PATH make'.
125
126 Building Win32 interface with bcc32 (Borland's compiler)
127 ========================================================
128 (This stage is only necessary if you want to use the Win32 native interface.
129  If you are happy with the GTK interface, then you can skip this section)
130
131 1) Compile vlc as usual.
132
133 2) From the plugin\win32 directory, use Borland C++ command-line tools
134 as follows:
135 bpr2mak intfwin.bpr -s \
136   | sed 's#^LIBPATH = .*#&;$$(RELEASELIBPATH)# ; s#^USERDEFINES = .*#& -DWIN32 -D__PLUGIN__ -DMODULE_NAME_IS_intfwin -DMODULE_NAME=intfwin#' \
137   > intfwin.mak         // Create a makefile from intfwin.bpr
138 make -fintfwin          // It's Borland's make utility !
139
140 3) This should create a intfwin.so
141 You can remove any other generated file.
142
143
144 Well done, now you're ready to use vlc!
145 =======================================