From 54126046fdcc85476492d8e3e4ab624b68d6053e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 19 May 2003 15:52:50 +0000 Subject: [PATCH] add a NOCRYPT check alongside the NO_OPENSSL check. Approved by: re (scottl) --- games/factor/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/factor/Makefile b/games/factor/Makefile index 8f68b9294f77..ffeae9c5932d 100644 --- a/games/factor/Makefile +++ b/games/factor/Makefile @@ -5,7 +5,7 @@ PROG= factor SRCS= factor.c pr_tbl.c CFLAGS+=-I${.CURDIR}/../primes -.if exists(${.CURDIR}/../../crypto) && !defined(NO_OPENSSL) +.if exists(${.CURDIR}/../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) CFLAGS+=-DHAVE_OPENSSL LDADD+= -lcrypto DPADD+= ${LIBCRYPTO}