Module Name: src Committed By: christos Date: Tue May 9 20:11:55 UTC 2023
Modified Files: src/usr.sbin/racoon: Makefile Log Message: Handle OpenSSL-3.x To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/usr.sbin/racoon/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/racoon/Makefile diff -u src/usr.sbin/racoon/Makefile:1.41 src/usr.sbin/racoon/Makefile:1.42 --- src/usr.sbin/racoon/Makefile:1.41 Mon May 8 22:30:21 2023 +++ src/usr.sbin/racoon/Makefile Tue May 9 16:11:54 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2023/05/09 02:30:21 christos Exp $ +# $NetBSD: Makefile,v 1.42 2023/05/09 20:11:54 christos Exp $ WARNS?= 0 # XXX third-party program, many issues NOCLANGERROR= # defined @@ -84,9 +84,10 @@ prsa_par.c: ${DIST}/src/racoon/prsa_par. CWARNFLAGS.gcc+= ${GCC_NO_ADDR_OF_PACKED_MEMBER} COPTS+= -fcommon -COPTS.crypto_openssl.c+=-Wno-error=deprecated-declarations -COPTS.rsalist.c+=-Wno-error=deprecated-declarations -COPTS.prsa_par.c+=-Wno-error=deprecated-declarations +COPTS.crypto_openssl.c+= -Wno-error=deprecated-declarations +COPTS.rsalist.c+= -Wno-error=deprecated-declarations +COPTS.prsa_par.c+= -Wno-error=deprecated-declarations +COPTS.plainrsa-gen.c+= -Wno-error=deprecated-declarations .include <bsd.prog.mk>