Skip to content

Commit

Permalink
[WIN32] changed source files to use external liblzo. /lib/win32/liblz…
Browse files Browse the repository at this point in the history
…o still needs to be there for the TexturePacker though it doesn't compile anymore ...
  • Loading branch information
WiSo committed Apr 9, 2011
1 parent fd8d4fb commit fe53faf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
8 changes: 2 additions & 6 deletions xbmc/guilib/TextureBundleXBT.cpp
Expand Up @@ -31,14 +31,10 @@
#include "utils/EndianSwap.h"
#include "utils/URIUtils.h"
#include "XBTF.h"
#ifndef _LINUX
#include "lib/win32/liblzo/LZO1X.H"
#else
#include <lzo/lzo1x.h>
#endif

#if !defined(__GNUC__)
#pragma comment(lib,"../../lib/win32/liblzo/lzo.lib")
#ifdef _WIN32
#pragma comment(lib,"liblzo2.lib")
#endif

CTextureBundleXBT::CTextureBundleXBT(void)
Expand Down
8 changes: 3 additions & 5 deletions xbmc/guilib/TextureBundleXPR.cpp
Expand Up @@ -28,18 +28,16 @@
#ifndef _LINUX
#include <sys/stat.h>
#include "utils/CharsetConverter.h"
#include "lib/win32/liblzo/LZO1X.H"
#else
#include <lzo/lzo1x.h>
#endif
#include <lzo/lzo1x.h>
#include "addons/Skin.h"
#include "settings/GUISettings.h"
#include "filesystem/SpecialProtocol.h"
#include "utils/EndianSwap.h"
#include "utils/URIUtils.h"

#if !defined(__GNUC__)
#pragma comment(lib,"../../lib/win32/liblzo/lzo.lib")
#ifdef _WIN32
#pragma comment(lib,"liblzo2.lib")
#endif

// alignment of file blocks - should be a multiple of the sector size of the disk and a power of 2
Expand Down

0 comments on commit fe53faf

Please sign in to comment.