changes: -update the bundled PCRE from 7.2 to 7.4 -minor bugfixes -translation updates pkgsrc changes: -don't use the bundled PCRE anymore, use pkgsrc's -try to work around some ld.so lossage on NetBSD (which leads to some applications - most notably evolution and glade3 - not resolving symbols in dynamically loaded plugins) another way: use the RTLD_DEFAULT pseudo-handle when the main module is referred to. This could replace the previous mechanism, but it needs more investigation and tests, so I'm leaving both in parallel for now.
25 lines
786 B
Makefile
25 lines
786 B
Makefile
# $NetBSD: buildlink3.mk,v 1.14 2007/11/08 19:52:21 drochner Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
GLIB2_BUILDLINK3_MK:= ${GLIB2_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= glib2
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nglib2}
|
|
BUILDLINK_PACKAGES+= glib2
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}glib2
|
|
|
|
.if !empty(GLIB2_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.4.0
|
|
BUILDLINK_ABI_DEPENDS.glib2+= glib2>=2.8.6nb1
|
|
BUILDLINK_PKGSRCDIR.glib2?= ../../devel/glib2
|
|
.endif # GLIB2_BUILDLINK3_MK
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|