diff options
author | joerg <joerg@pkgsrc.org> | 2009-03-20 19:23:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-03-20 19:23:50 +0000 |
commit | 2d1ba244e90207d03eef397a99aa4091baeec5b3 (patch) | |
tree | 647e974495c5d41703d41ca2e71c9b6063b9153a /mk/resolv.buildlink3.mk | |
parent | 4bf0a20854ae9e07b7965977a713f2efee890976 (diff) | |
download | pkgsrc-2d1ba244e90207d03eef397a99aa4091baeec5b3.tar.gz |
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
Diffstat (limited to 'mk/resolv.buildlink3.mk')
-rw-r--r-- | mk/resolv.buildlink3.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mk/resolv.buildlink3.mk b/mk/resolv.buildlink3.mk index bb3db94ee8c..a8d9ff5d3f6 100644 --- a/mk/resolv.buildlink3.mk +++ b/mk/resolv.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: resolv.buildlink3.mk,v 1.2 2009/01/20 21:30:41 adrianp Exp $ +# $NetBSD: resolv.buildlink3.mk,v 1.3 2009/03/20 19:25:01 joerg Exp $ # # This Makefile fragment is included by package Makefiles and # buildlink3.mk files for the packages that need a thread-safe @@ -40,9 +40,7 @@ USE_BUILTIN.resolv?= no .endif .if !empty(USE_BUILTIN.resolv:M[yY][eE][sS]) -BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nresolv} -BUILDLINK_PACKAGES+= resolv -BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}resolv +BUILDLINK_TREE+= resolv -resolv BUILDLINK_AUTO_VARS.resolv= ${RESOLV_AUTO_VARS} .else . include "../../net/bind9/buildlink3.mk" |