2014-05-20 22:00:01 by Adam Ciarcinski | Files touched by this commit (12) | |
Log message: Makefile |
2012-10-21 12:27:15 by Aleksey Cheusov | Files touched by this commit (4) |
Log message: Fix pkglint warnings, add LICENSE |
2012-09-26 15:20:12 by Jonathan Perkin | Files touched by this commit (4) |
Log message: Disable hand-rolled assembly on Solaris, the style is incompatible with the Solaris linker, and -mimpure-text is no longer an option with GCC. Fixes build on Solaris/GCC. |
2012-09-12 02:24:46 by Aleksej Saushev | Files touched by this commit (110) |
Log message: "user-destdir" is default these days |
2012-06-12 17:46:06 by Thomas Klausner | Files touched by this commit (106) |
Log message: Add inet6 to default suggested options. It's 2012. |
2011-09-14 17:46:02 by Hans Rosenfeld | Files touched by this commit (3) |
Log message: Fix build on SunOS. |
2011-02-28 15:53:10 by Thomas Klausner | Files touched by this commit (169) |
Log message: Reset maintainer for retired developers. |
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. |