pkgsrc/mk/dlopen.buildlink3.mk
joerg 2d1ba244e9 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.
2009-03-20 19:23:50 +00:00

58 lines
1.7 KiB
Makefile

# $NetBSD: dlopen.buildlink3.mk,v 1.17 2009/03/20 19:25:01 joerg Exp $
#
# This Makefile fragment is included by package Makefiles and
# buildlink3.mk files for the packages that use dlopen().
#
# It defines the variables DL_CFLAGS, DL_LDFLAGS and DL_LIBS, which
# are also exported into the CONFIGURE_ENV and MAKE_ENV environments.
#
# Package-settable variables:
#
# DL_AUTO_VARS
# When set to "yes", the necessary flags are added automatically
# to CFLAGS and friends.
#
# Default: no
#
# Keywords: dl dlopen
#
DLOPEN_BUILDLINK3_MK:= ${DLOPEN_BUILDLINK3_MK}+
.include "bsd.fast.prefs.mk"
.if !empty(DLOPEN_BUILDLINK3_MK:M+)
CHECK_BUILTIN.dl:= yes
.include "dlopen.builtin.mk"
CHECK_BUILTIN.dl:= no
.endif # DLOPEN_BUILDLINK3_MK
DL_AUTO_VARS?= no
.if !empty(USE_BUILTIN.dl:M[yY][eE][sS])
BUILDLINK_TREE+= dl -dl
BUILDLINK_BUILTIN_MK.dl= ../../mk/dlopen.builtin.mk
BUILDLINK_AUTO_VARS.dl= ${DL_AUTO_VARS}
.elif !empty(MACHINE_PLATFORM:MDarwin-[56].*)
. include "../../devel/dlcompat/buildlink3.mk"
BUILDLINK_AUTO_VARS.dlcompat= ${DL_AUTO_VARS}
BUILDLINK_LDFLAGS.dl:= ${BUILDLINK_LDFLAGS.dlcompat}
.else
PKG_FAIL_REASON= "${PKGNAME} requires a working dlopen()."
.endif
.if !empty(DLOPEN_BUILDLINK3_MK:M+)
#
# Define user-visible DL_{CFLAGS,LDFLAGS,LIBS} as compiler options used
# to compile/link code that uses dl*() functions.
#
DL_CFLAGS= ${BUILDLINK_CFLAGS.dl}
DL_LDFLAGS= ${BUILDLINK_LDFLAGS.dl}
DL_LIBS= ${BUILDLINK_LIBS.dl}
CONFIGURE_ENV+= DL_CFLAGS=${DL_CFLAGS:Q}
CONFIGURE_ENV+= DL_LDFLAGS=${DL_LDFLAGS:Q}
CONFIGURE_ENV+= DL_LIBS=${DL_LIBS:Q}
MAKE_ENV+= DL_CFLAGS=${DL_CFLAGS:Q}
MAKE_ENV+= DL_LDFLAGS=${DL_LDFLAGS:Q}
MAKE_ENV+= DL_LIBS=${DL_LIBS:Q}
.endif # DLOPEN_BUILDLINK3_MK