diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-11-21 14:18:56 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-11-21 14:18:56 +0000 |
commit | d69185d92ff91e2a252a861be3bdb6fae7837b2d (patch) | |
tree | cd489b07c8207ac5fa46cfec457553f17d4c645b /win32/scripts | |
parent | 4c81497d907261580d3ff4685c4a542ecb5209a4 (diff) | |
download | xine-lib-d69185d92ff91e2a252a861be3bdb6fae7837b2d.tar.gz xine-lib-d69185d92ff91e2a252a861be3bdb6fae7837b2d.tar.bz2 |
*BUGFIX*
M$VC port update:
- doc update.
- added none plugins (meant TWO none plugins)
- fix some compile warnings
- update due to the alphablend
- install the headers too
CVS patchset: 7810
CVS date: 2005/11/21 14:18:56
Diffstat (limited to 'win32/scripts')
-rwxr-xr-x | win32/scripts/move_xine_fonts.bat | 8 | ||||
-rw-r--r-- | win32/scripts/post_install.bat | 21 |
2 files changed, 21 insertions, 8 deletions
diff --git a/win32/scripts/move_xine_fonts.bat b/win32/scripts/move_xine_fonts.bat deleted file mode 100755 index 34e8ff3bf..000000000 --- a/win32/scripts/move_xine_fonts.bat +++ /dev/null @@ -1,8 +0,0 @@ -ECHO creating %1\share\xine\libxine1\fonts ...
-mkdir %1\share
-mkdir %1\share\xine
-mkdir %1\share\xine\libxine1
-mkdir %1\share\xine\libxine1\fonts
-
-ECHO fonts ...
-xcopy /Y /s ..\misc\fonts\*.gz %1\share\xine\libxine1\fonts
diff --git a/win32/scripts/post_install.bat b/win32/scripts/post_install.bat new file mode 100644 index 000000000..2b5a6ee22 --- /dev/null +++ b/win32/scripts/post_install.bat @@ -0,0 +1,21 @@ +ECHO copying fonts to %1\share\xine\libxine1\fonts ...
+mkdir %1\share
+mkdir %1\share\xine
+mkdir %1\share\xine\libxine1
+mkdir %1\share\xine\libxine1\fonts
+xcopy /Y /s ..\misc\fonts\*.gz %1\share\xine\libxine1\fonts
+
+ECHO copying headers to %1\include\xine
+mkdir %1\include
+mkdir %1\include\xine
+xcopy /Y /s ..\include\xine.h %1\include
+xcopy /Y /s ..\lib\os_types.h %1\include\xine
+xcopy /Y /s ..\src\xine-engine\*.h %1\include\xine
+xcopy /Y /s ..\src\xine-utils\*.h %1\include\xine
+xcopy /Y /s ..\src\demuxers\demux.h %1\include\xine
+xcopy /Y /s ..\src\input\input_plugin.h %1\include\xine
+del %1\include\xine\accel_xvmc.h
+del %1\include\xine\bswap.h
+del %1\include\xine\lrb.h
+del %1\include\xine\ppcasm_string.h
+del %1\include\xine\xine_check.h
|