diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-09-19 16:14:02 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-09-19 16:14:02 +0000 |
commit | 097426600056a112752e92eb1c13f0d6900f3907 (patch) | |
tree | 5cc819adfef1b280bc5bc0b7a6bd5f92edfa9f55 /doc/README.MINGWCROSS | |
parent | 801a491a64cb01af880bd2093b3d350be38219a7 (diff) | |
download | xine-lib-097426600056a112752e92eb1c13f0d6900f3907.tar.gz xine-lib-097426600056a112752e92eb1c13f0d6900f3907.tar.bz2 |
*BUGFIX*
added missing mutex init in xine_ticket (fixes pause assert with win32-pthreads)
added missing destroys due to pthread
doc spells and houskeeping
use directx of older versions too, possibility to use xine w/o HW accel
CVS patchset: 7738
CVS date: 2005/09/19 16:14:02
Diffstat (limited to 'doc/README.MINGWCROSS')
-rw-r--r-- | doc/README.MINGWCROSS | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/README.MINGWCROSS b/doc/README.MINGWCROSS index a840172a6..c867bf9ac 100644 --- a/doc/README.MINGWCROSS +++ b/doc/README.MINGWCROSS @@ -173,6 +173,9 @@ In following text are used symbols $PREFIX and $USER with this meaning: # mv pthread.def pthreadGC2.def wine LIB.EXE /machine:i386 /def:pthreadGC2.def + # + # installing + # su mkdir -p $PREFIX/pthreads-win32/bin mkdir -p $PREFIX/pthreads-win32/include @@ -193,12 +196,18 @@ In following text are used symbols $PREFIX and $USER with this meaning: # small workaround in Makefile: # sed -e 's/dllwrap /i386-mingw32-dllwrap /g' win32/Makefile.gcc > Makefile + # + # compiling + # make CC=i386-mingw32-gcc AR=i386-mingw32-ar RC=i386-mingw32-windres STATICLIB=libz-static.a IMPLIB=libz.a # # possibility to use zlib library in M$ Visual C (optional) # cp win32/zlib.def zlib1.def wine LIB.EXE /machine:i386 /def:zlib1.def + # + # installing + # su mkdir -p $PREFIX/zlib/{include,lib,bin} cp zconf.h zlib.h $PREFIX/zlib/include/ @@ -247,7 +256,7 @@ Now we can build xine library for Windows by this way: # if we want to use xine library in M$ compilers, we will need wine and some # tools from M$ Visual C: LIB.EXE, LINK.EXE, MSPDB60.DLL # - # create libxine-1.lib file + # create libxine-1.lib file (optional) # cd <path_where_libxine_is_installed_>/lib cp ../bin/libxine-1.dll . |