From 14a8a541685d0dd60d5e9a9168fb29777e296f0a Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 15 May 2000 23:29:03 +0000 Subject: [PATCH] /dev/urandom is the default random device, so no use in stateing it here. Also simplify the conditionals a little. --- secure/lib/libcrypto/Makefile.inc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index c77ed399209b..6197d632a814 100644 --- a/secure/lib/libcrypto/Makefile.inc +++ b/secure/lib/libcrypto/Makefile.inc @@ -6,12 +6,9 @@ CFLAGS+= -DTERMIOS -DANSI_SOURCE -DNO_IDEA -I${LCRYPTO_SRC} -I${.OBJDIR} .if ${MACHINE_ARCH} == "i386" CFLAGS+= -DL_ENDIAN # -DBN_ASM -DSHA1_ASM -DMD5_ASM -DRMD160_ASM - XXX notyet -CFLAGS+= -DDEVRANDOM=\"/dev/urandom\" -.else -.if ${MACHINE_ARCH} == "alpha" +.elif ${MACHINE_ARCH} == "alpha" # no ENDIAN stuff defined for alpha (64-bit) .endif -.endif WITH_RSA?= YES