Disable lzma by default for now.

This commit is contained in:
Markus F.X.J. Oberhumer 2006-06-14 11:42:24 +02:00
parent d8748f4270
commit 014de25f6f
2 changed files with 9 additions and 4 deletions

View File

@ -40,7 +40,7 @@ LIBS += -lucl -lz
# you should set envvar UPX_LZMADIR to point to your unpacked lzma443.tar.bz2
ifneq ($(wildcard $(UPX_LZMADIR)/C/7zip),)
DEFS += -DWITH_LZMA
INCLUDES += -I$(LZMADIR)
INCLUDES += -I$(UPX_LZMADIR)
endif
upx_SOURCES := $(wildcard $(srcdir)/*.cpp)

View File

@ -144,12 +144,17 @@
# undef __unix
#endif
#if 1 && !defined(WITH_LZMA)
# define WITH_LZMA 1
#endif
#if !defined(WITH_UCL)
# define WITH_UCL 1
#endif
#if 0 && !defined(WITH_LZMA)
# define WITH_LZMA 1
#endif
#if defined(UPX_OFFICIAL_BUILD)
# if !defined(WITH_LZMA) || !defined(WITH_NRV) || !defined(WITH_UCL)
# error
# endif
#endif
#if defined(WITH_NRV)
# include <nrv/nrvconf.h>
#endif