Module Name: src
Committed By: mrg
Date: Wed Oct 16 07:39:19 UTC 2019
Modified Files:
src/external/bsd/openldap/lib/libldap: Makefile.libldap
Log Message:
use GCC_NO_STRINGOP_OVERFLOW for charray.c.
this only affects some platforms.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 \
src/external/bsd/openldap/lib/libldap/Makefile.libldap
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/openldap/lib/libldap/Makefile.libldap
diff -u src/external/bsd/openldap/lib/libldap/Makefile.libldap:1.9 src/external/bsd/openldap/lib/libldap/Makefile.libldap:1.10
--- src/external/bsd/openldap/lib/libldap/Makefile.libldap:1.9 Sun Feb 4 03:19:52 2018
+++ src/external/bsd/openldap/lib/libldap/Makefile.libldap Wed Oct 16 07:39:18 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.libldap,v 1.9 2018/02/04 03:19:52 christos Exp $
+# $NetBSD: Makefile.libldap,v 1.10 2019/10/16 07:39:18 mrg Exp $
.include "../../openldap.mk"
@@ -25,3 +25,5 @@ LIBDPLIBS+= lber ${.CURDIR}/../liblber
LIBDPLIBS+= crypto ${NETBSDSRCDIR}/crypto/external/bsd/${EXTERNAL_OPENSSL_SUBDIR}/lib/libcrypto
LIBDPLIBS+= ssl ${NETBSDSRCDIR}/crypto/external/bsd/${EXTERNAL_OPENSSL_SUBDIR}/lib/libssl
+
+COPTS.charray.c+= ${GCC_NO_STRINGOP_OVERFLOW}