Module Name: src Committed By: christos Date: Fri Nov 24 18:45:46 UTC 2023
Modified Files: src/crypto/external/bsd/libsaslc/lib: Makefile Log Message: move line to avoid deprecated declaration errors outside of the kerberos block. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/crypto/external/bsd/libsaslc/lib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/crypto/external/bsd/libsaslc/lib/Makefile diff -u src/crypto/external/bsd/libsaslc/lib/Makefile:1.10 src/crypto/external/bsd/libsaslc/lib/Makefile:1.11 --- src/crypto/external/bsd/libsaslc/lib/Makefile:1.10 Mon May 8 22:19:32 2023 +++ src/crypto/external/bsd/libsaslc/lib/Makefile Fri Nov 24 13:45:46 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2023/05/09 02:19:32 christos Exp $ +# $NetBSD: Makefile,v 1.11 2023/11/24 18:45:46 christos Exp $ .include <bsd.own.mk> @@ -59,7 +59,8 @@ LIBDPLIBS+= ssl ${NETBSDSRCDIR}/crypto/e .if (${MKKERBEROS} != "no") LIBDPLIBS+= gssapi ${NETBSDSRCDIR}/crypto/external/bsd/heimdal/lib/libgssapi -COPTS.crypto.c+=-Wno-error=deprecated-declarations .endif +COPTS.crypto.c+=-Wno-error=deprecated-declarations + .include <bsd.lib.mk>