]> git.sesse.net Git - vlc/blobdiff - INSTALL-win32.txt
Fixed the color_space problem. Overlays now work.
[vlc] / INSTALL-win32.txt
index 0544df941ecf1313bcaaefeaae03f76a4db48e41..3e2183ca40750f3f15dffc49f798a61cde0c989c 100644 (file)
@@ -92,5 +92,31 @@ If you are using the tools from http://www.libsdl.org/Xmingw32/ you can type som
  PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH \
    make
 
+Building Win32 interface with bcc32 (Borland's compiler)
+========================================================
+
+[Steps 2 and 3 are temporary]
+
+1) Compile vlc as usual.
+include\defs.h should be generated.
+
+2) Edit include\defs.h, and add the following lines if necessary:
+#define WIN32
+#define MODULE_NAME win32
+#define MODULE_NAME_IS win32
+#define PLUGIN
+#define HAVE_DYNAMIC_PLUGINS
+
+3) Still in defs.h, comment the following line to avoid compilation warnings:
+#define PACKAGE "vlc"
+
+4) From the plugin\win32 directory, use Borland C++ command-line tools
+as follows:
+bpr2mak intfwin.bpr    // Create a makefile from intfwin.bpr
+make -fintfwin                 // It's Borland's make utility !
+
+5) This should create a intfwin.so
+You can remove any other generated file.
+
 
 Well done, now you're ready to use vlc!