Module Name: src Committed By: martin Date: Fri Jul 14 08:33:25 UTC 2023
Modified Files: src/external/bsd/jemalloc/lib [netbsd-10]: Makefile Log Message: Pull up following revision(s) (requested by mrg in ticket #235): external/bsd/jemalloc/lib/Makefile: revision 1.4 this is not needed (or wanted) for jemalloc 1.0, so make it empty. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.12.1 src/external/bsd/jemalloc/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/external/bsd/jemalloc/lib/Makefile diff -u src/external/bsd/jemalloc/lib/Makefile:1.3 src/external/bsd/jemalloc/lib/Makefile:1.3.12.1 --- src/external/bsd/jemalloc/lib/Makefile:1.3 Tue Mar 12 15:13:25 2019 +++ src/external/bsd/jemalloc/lib/Makefile Fri Jul 14 08:33:25 2023 @@ -1,10 +1,13 @@ -# $NetBSD: Makefile,v 1.3 2019/03/12 15:13:25 christos Exp $ +# $NetBSD: Makefile,v 1.3.12.1 2023/07/14 08:33:25 martin Exp $ WARNS?= 5 .include <bsd.init.mk> LIB=jemalloc +# The symbols from the stub only exist in newer jemalloc. +.if ${HAVE_JEMALLOC:U0} != 100 SRCS=jemalloc_stub.c +.endif .include <bsd.lib.mk>