diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2003-11-04 14:38:26 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2003-11-04 14:38:26 +0000 |
commit | cad449ce4a6de420b36a155f9da8c575307c66a1 (patch) | |
tree | 58a2ec33904072d59ac44f39562aeb592e0d5f4f /win32 | |
parent | bef16c72dc26ec32050c0382c92678f960dca719 (diff) | |
download | xine-lib-cad449ce4a6de420b36a155f9da8c575307c66a1.tar.gz xine-lib-cad449ce4a6de420b36a155f9da8c575307c66a1.tar.bz2 |
Final patches for compiling xine under MSVC:
- basename() is added to xine-utils, if it isn't found by configure
- macros with variable number of arguments are simplified to ignore
additional arguments (only for MSVC),
lprintf macro simplified with full functionality
- minor update for building a52, some preparation for ffmpeg
CVS patchset: 5687
CVS date: 2003/11/04 14:38:26
Diffstat (limited to 'win32')
-rw-r--r-- | win32/xineplug_decode_a52.dsp | 4 | ||||
-rw-r--r-- | win32/xineplug_decode_ff.dsp | 2 | ||||
-rw-r--r-- | win32/xineutils.def | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/win32/xineplug_decode_a52.dsp b/win32/xineplug_decode_a52.dsp index 151940e39..1d8399cd5 100644 --- a/win32/xineplug_decode_a52.dsp +++ b/win32/xineplug_decode_a52.dsp @@ -98,11 +98,11 @@ SOURCE=..\src\liba52\bit_allocate.c # End Source File
# Begin Source File
-SOURCE=..\src\liba52\crc.c
+SOURCE=..\src\liba52\bitstream.c
# End Source File
# Begin Source File
-SOURCE=..\src\liba52\bitstream.c
+SOURCE=..\src\liba52\crc.c
# End Source File
# Begin Source File
diff --git a/win32/xineplug_decode_ff.dsp b/win32/xineplug_decode_ff.dsp index afa94c91c..33c319955 100644 --- a/win32/xineplug_decode_ff.dsp +++ b/win32/xineplug_decode_ff.dsp @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir ""
LIB32=link.exe
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_FF_EXPORTS" /YX /FD /GZ /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "include" /I "contrib/pthreads" /I "contrib/timer" /I "../include" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /YX /FD /GZ /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "include" /I "contrib/pthreads" /I "contrib/timer" /I "../include" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /D "SIMPLE_IDCT" /D "HAVE_AV_CONFIG_H" /D "RUNTIME_CPUDETECT" /D "USE_FASTMEMCPY" /D "CONFIG_RISKY" /D "CONFIG_DECODERS" /D "XINE_MPEG_ENCODER" /YX /FD /GZ /c
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
# ADD BASE RSC /l 0x409 /d "_DEBUG"
diff --git a/win32/xineutils.def b/win32/xineutils.def index a5aa4a21d..1acfce199 100644 --- a/win32/xineutils.def +++ b/win32/xineutils.def @@ -40,4 +40,6 @@ init_yuv_conversion xml_parser_free_tree
xml_parser_build_tree
-xml_parser_init
\ No newline at end of file +xml_parser_init
+
+basename
|