c16221a4db
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
38 lines
1,020 B
Makefile
38 lines
1,020 B
Makefile
# $NetBSD: buildlink3.mk,v 1.18 2006/07/08 23:11:12 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
APACHE_BUILDLINK3_MK:= ${APACHE_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= apache
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Napache}
|
|
BUILDLINK_PACKAGES+= apache
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}apache
|
|
|
|
.if !empty(APACHE_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.apache+= apache-1.3.*
|
|
BUILDLINK_ABI_DEPENDS.apache?= apache>=1.3.34nb5
|
|
BUILDLINK_PKGSRCDIR.apache?= ../../www/apache
|
|
|
|
. if defined(APACHE_MODULE)
|
|
BUILDLINK_DEPMETHOD.apache+= full
|
|
. else
|
|
BUILDLINK_DEPMETHOD.apache?= build
|
|
. endif
|
|
|
|
USE_TOOLS+= perl # for "apxs"
|
|
APXS?= ${BUILDLINK_PREFIX.apache}/sbin/apxs
|
|
|
|
. if defined(GNU_CONFIGURE)
|
|
CONFIGURE_ARGS+= --with-apxs=${APXS:Q}
|
|
. endif
|
|
|
|
# required because httpd/os.h includes <dlfcn.h> when it is found by
|
|
# Apache's configure script.
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
|
|
.endif # APACHE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|