2009-03-20 20:42:20 by Hasso Tepper | Files touched by this commit (1) |
Log message:
DragonFly needs the same hack as NetBSD, the bluetooth stack is the same.
|
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.
|
2009-03-05 22:10:27 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Regen in canonical form.
|
2008-06-20 03:09:45 by Joerg Sonnenberger | Files touched by this commit (993) |
Log message:
Add DESTDIR support.
|
2008-05-25 23:23:27 by Thomas Klausner | Files touched by this commit (12) |
Log message:
Reset maintainer on his request.
|
2007-05-15 15:11:57 by Juan Romero Pardines | Files touched by this commit (1) |
Log message:
NetBSD needs to include <bluetooth.h> for bdaddr_t, change the
SUBST magic for this, that's required to make the upcoming fuse-obexfs
package work.
Bump PKGREVISION.
|
2006-12-19 19:09:23 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Fix PKGCONFIG_OVERRIDE file, bump PKGREVISION.
|
2006-10-04 22:51:40 by Thomas Klausner | Files touched by this commit (6) |
Log message:
Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev.
|
2006-07-09 11:27:52 by Juan Romero Pardines | Files touched by this commit (10) |
Log message:
Update to 1.3:
ver 1.3:
Add support for setting the creation-ID.
Updated constants to match IrOBEX 1.3.
Replace netbuf implementation with databuffer.
Fix segmentation fault when receiving invalid OBEX packets.
ver 1.2:
Add OBEX_EV_REQCHECK support.
Add support for suspend after sending a header.
Add support for empty headers for buggy OBEX servers.
Fix memory leak in obex_object_send().
ver 1.1:
Fix list of exported functions.
Fix duplicate string from basename() result.
Fix wrong order of sanity checks.
Fix memory leak in send_stream() function.
ISO C99 says that inttypes.h includes stdint.h header.
Add proper client side ABORT support.
Add support for OBEX_SuspendRequest() and OBEX_ResumeRequest().
Add USB transport support.
Increase the allowed maximum MTU to 64kB-1.
Disconnect when an ABORT fails.
Make it possible to include headers from C++ source code.
Advertise OBEX Protocol Version 1.0.
pkgsrc:
* I've added patches to detect properly NetBSD bluetooth support
and I have sent it to the openobex folks, they will be integrated
soon.
* Take maintainership for now.
* Bump BUILDLINK_API_DEPENDS because the API has changed.
*** PLEASE DO NOT TOUCH OBEXFTP, I'M UPDATING IT RIGHT NOW. THANKS ***
|
2006-07-09 01:11:17 by Johnny C. Lam | Files touched by this commit (877) |
Log message:
Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
|