Do not link zlib - it is apparently not needed.

This commit is contained in:
OBattler
2026-01-23 00:27:55 +01:00
parent 3867daa9f7
commit fbb9b091af

View File

@@ -65,7 +65,7 @@ OBJS = edc.c \
crypto/whirlpool.c
build:
$(CC) -shared $(CFLAGS) $(OBJS) -I. -fPIC -fomit-frame-pointer -lz -o $(DEST)
$(CC) -shared $(CFLAGS) $(OBJS) -I. -fPIC -fomit-frame-pointer -o $(DEST)
ifneq "$(DEBUG)" "y"
$(STRIP) $(STRIPFLAGS) $(DEST)
endif