1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-26 18:08:20 +00:00

Merge pull request #2459 from xvitaly/minizip-fix

Fixed linkage against packaged version of minizip (part of zlib)
This commit is contained in:
Jens Steube 2020-07-21 12:37:53 +02:00 committed by GitHub
commit ca8a8b33e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ endif
# ZLIB # ZLIB
CFLAGS += -I$(DEPS_ZLIB_PATH) CFLAGS += -I$(DEPS_ZLIB_PATH)
ifeq ($(USE_SYSTEM_ZLIB),1) ifeq ($(USE_SYSTEM_ZLIB),1)
LFLAGS += -lz LFLAGS += -lz -lminizip
endif endif
# OpenCL # OpenCL