util.h isn't really needed and only causes problems when compiling the tests
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4896 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
196d1d0028
commit
d10b1ccc5f
2 changed files with 4 additions and 5 deletions
|
@ -23,14 +23,15 @@
|
|||
***********************/
|
||||
|
||||
#include "../Platform.h"
|
||||
#include "../exehead/util.h"
|
||||
|
||||
/* #define _LZMA_PROB32 */
|
||||
/* It can increase speed on some 32-bit CPUs,
|
||||
but memory usage will be doubled in that case */
|
||||
|
||||
#define lzmaalloc(bytes) GlobalAlloc(GPTR,bytes)
|
||||
#define lzmafree GlobalFree
|
||||
#ifdef _WIN32
|
||||
# define lzmaalloc(bytes) GlobalAlloc(GPTR,bytes)
|
||||
# define lzmafree GlobalFree
|
||||
#endif
|
||||
|
||||
/***********************
|
||||
* Configuration End *
|
||||
|
|
|
@ -257,8 +257,6 @@ extern void BZ2_hbMakeCodeLengths ( UChar*, Int32*, Int32, Int32 );
|
|||
|
||||
#else//EXEHEAD
|
||||
|
||||
#include "../exehead/util.h"
|
||||
|
||||
/*-- states for decompression. --*/
|
||||
|
||||
#define BZ_X_IDLE 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue