summaryrefslogtreecommitdiff
path: root/x11/gtkglarea
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-03-18 09:12:08 +0000
committerjlam <jlam@pkgsrc.org>2004-03-18 09:12:08 +0000
commit5b4a5f2bf4fb1440241091cba32eec0d4adcd615 (patch)
tree98bc5d9451729f031998fd23ac3319a5618c75b0 /x11/gtkglarea
parent7b5259bf4f429197141e0e4389ded00acada796f (diff)
downloadpkgsrc-5b4a5f2bf4fb1440241091cba32eec0d4adcd615.tar.gz
Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
Diffstat (limited to 'x11/gtkglarea')
-rw-r--r--x11/gtkglarea/buildlink3.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/x11/gtkglarea/buildlink3.mk b/x11/gtkglarea/buildlink3.mk
index 665cb8ce491..40745dd78bd 100644
--- a/x11/gtkglarea/buildlink3.mk
+++ b/x11/gtkglarea/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2004/03/08 02:36:23 snj Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2004/03/18 09:12:17 jlam Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
GTKGLAREA_BUILDLINK3_MK:= ${GTKGLAREA_BUILDLINK3_MK}+
@@ -13,11 +13,10 @@ BUILDLINK_PACKAGES+= gtkglarea
.if !empty(GTKGLAREA_BUILDLINK3_MK:M+)
BUILDLINK_DEPENDS.gtkglarea+= gtkglarea>=1.2.2nb3
BUILDLINK_PKGSRCDIR.gtkglarea?= ../../x11/gtkglarea
+.endif # GTKGLAREA_BUILDLINK3_MK
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"
.include "../../x11/gtk/buildlink3.mk"
-.endif # GTKGLAREA_BUILDLINK3_MK
-
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}