[Midnightbsd-cvs] src: Makefile: Stop building with encryption for RELEASE_CRUNCH (rescue

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Jun 29 23:06:22 EDT 2008


Log Message:
-----------
Stop building with encryption for RELEASE_CRUNCH (rescue media) and keep WARNS 2 in the process.

Modified Files:
--------------
    src/bin/ed:
        Makefile (r1.2 -> r1.3)

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/src/bin/ed/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -L bin/ed/Makefile -L bin/ed/Makefile -u -r1.2 -r1.3
--- bin/ed/Makefile
+++ bin/ed/Makefile
@@ -3,14 +3,16 @@
 
 PROG=	ed
 SRCS=	buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
+WARNS?=	2
 LINKS=	${BINDIR}/ed ${BINDIR}/red
 MLINKS=	ed.1 red.1
 
+.if !defined(RELEASE_CRUNCH)
 .if !defined(NO_CRYPT) && !defined(NO_OPENSSL)
 CFLAGS+=-DDES
-WARNS?=	2
 DPADD=	${LIBCRYPTO}
 LDADD=	-lcrypto
 .endif
+.endif
 
 .include <bsd.prog.mk>


More information about the Midnightbsd-cvs mailing list