2013-06-22 21:49:12 by Jonathan Perkin | Files touched by this commit (3) |
Log message: Add SunOS support, using the libusb implementation from OpenSolaris. I am able to at least probe some devices, and this gets us a large number of extra packages. |
2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460) |
Log message: Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. |
2012-05-30 17:48:22 by Thomas Klausner | Files touched by this commit (1) |
Log message: Note conflict with libusb-compat. |
2012-05-30 16:13:15 by Thomas Klausner | Files touched by this commit (2) |
Log message: Mention that this is version 0 of the library. Bump PKGREVISION. |
2011-10-04 16:19:47 by Hans Rosenfeld | Files touched by this commit (1) |
Log message: Extend to find libusb in /usr/sfw on SunOS 5.10. |
2011-04-21 16:46:29 by Hans Rosenfeld | Files touched by this commit (1) |
Log message: Fix broken variable expansion. |
2011-04-21 15:05:35 by Hans Rosenfeld | Files touched by this commit (1) |
Log message: Recent versions of SunOS have a native libusb. Add a builtin.mk to allow packages depending on devel/libusb to be built on SunOS. |
2010-12-04 09:12:34 by Adam Ciarcinski | Files touched by this commit (3) |
Log message: Fix building on Mac OS X |
2010-02-20 23:42:03 by Georg Schwarz | Files touched by this commit (2) |
Log message: without this patch it failed to compile on MacOS 10.6 in 64 bit mode |
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. |