From 3e87ecb2f6d97f0a12ba76a32f46bd0f27b72c1b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 25 Apr 2002 01:39:08 +0000 Subject: Rework libcrypt based on the openbsd crypt implementation so that it passes the DES validation suite. setkey_r, encrypt_r, and __des_crypt_r are not really reentrant now, and that should be fixed (or we should drop crypt_r and friends which are not supported by SuSv3). -Erik --- libcrypt/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libcrypt/Makefile') diff --git a/libcrypt/Makefile b/libcrypt/Makefile index ecb2831e5..cc623fa5e 100644 --- a/libcrypt/Makefile +++ b/libcrypt/Makefile @@ -28,7 +28,7 @@ LIBCRYPT=libcrypt.a LIBCRYPT_SHARED=libcrypt.so LIBCRYPT_SHARED_FULLNAME=libcrypt-$(MAJOR_VERSION).$(MINOR_VERSION).so -CSRC = crypt.c des.c +CSRC = crypt.c des.c md5.c OBJS=$(patsubst %.c,%.o, $(CSRC)) all: $(OBJS) $(LIBCRYPT) @@ -47,8 +47,6 @@ $(OBJS): %.o : %.c $(OBJ): Makefile -des.o: des.c md5.c - shared: all $(LD) $(LDFLAGS) -soname=$(LIBCRYPT_SHARED).$(MAJOR_VERSION) \ -o $(LIBCRYPT_SHARED_FULLNAME) --whole-archive $(LIBCRYPT) \ -- cgit v1.2.3