Module Name: src
Committed By: bouyer
Date: Sun Nov 26 12:51:24 UTC 2023
Modified Files:
src/crypto/external/bsd/libsaslc/lib [netbsd-10]: Makefile
Log Message:
Pull up following revision(s) (requested by kre in ticket #473):
crypto/external/bsd/libsaslc/lib/Makefile: revision 1.11
move line to avoid deprecated declaration errors outside of the kerberos b=
lock.
To generate a diff of this commit:
cvs rdiff -u -r1.9.14.1 -r1.9.14.2 \
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.9.14.1 src/crypto/external/bsd/libsaslc/lib/Makefile:1.9.14.2
--- src/crypto/external/bsd/libsaslc/lib/Makefile:1.9.14.1 Fri Aug 11 13:40:10 2023
+++ src/crypto/external/bsd/libsaslc/lib/Makefile Sun Nov 26 12:51:24 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9.14.1 2023/08/11 13:40:10 martin Exp $
+# $NetBSD: Makefile,v 1.9.14.2 2023/11/26 12:51:24 bouyer 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>