2012-10-06 16:11:27 by Aleksej Saushev | Files touched by this commit (427) |
Log message: Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. |
2012-05-07 03:54:16 by David A. Holland | Files touched by this commit (473) |
Log message: Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) It turns out there were a lot of these. |
2012-05-05 02:55:47 by Thomas Klausner | Files touched by this commit (3) |
Log message: Fix build with automake-1.12. While here, set LICENSE. |
2012-03-28 22:46:57 by Thomas Klausner | Files touched by this commit (2) |
Log message: Fix build with clang. |
2012-01-26 15:17:38 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message: Reset maintainer, domain doesn't exist |
2011-11-01 07:03:15 by Steven Drake | Files touched by this commit (1557) |
Log message: Recursive bump for graphics/freetype2 buildlink addition. |
2010-01-20 13:46:07 by Thomas Klausner | Files touched by this commit (1) |
Log message: Not make-jobs safe (fails when linking examples with -j16). |
2009-10-28 02:02:03 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message: Pass down X11 configure options for modular Xorg |
2009-06-14 19:59:32 by Joerg Sonnenberger | Files touched by this commit (263) |
Log message: Remove @dirrm entries from PLISTs |
2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message: 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. |