CVS log for ports/devel/dyncall/Makefile
Up to [FreeBSD] / ports / devel / dyncall
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Feb 7 04:25:38 2012 UTC (3 days, 22 hours ago) by miwi
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +31 -17 lines
- Update to 0.7 PR: 164611 Submitted by: maintainer
Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Sep 28 11:50:47 2010 UTC (16 months, 1 week ago) by decke
Branches: MAIN
CVS tags: RELEASE_9_0_0, RELEASE_8_2_0, RELEASE_7_4_0, RELEASE_6_EOL
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +23 -6 lines
- Update to 0.6 - Master sites updated PR: ports/150943 Submitted by: Tassilo Philipp <tphilipp at potion-studios dot com> (maintainer) Approved by: beat (co-mentor)
Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed Apr 28 16:18:12 2010 UTC (21 months, 2 weeks ago) by beat
Branches: MAIN
CVS tags: RELEASE_8_1_0
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +1 -1 lines
- Fix build on PowerPC PR: ports/146043 Submitted by: Andreas Tobler <andreast-list AT fgznet.ch> Approved by: Tassilo Philipp <tphilipp AT potion-studios.com> (maintainer, via private mail)
Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Apr 1 10:18:11 2010 UTC (22 months, 1 week ago) by linimon
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1 lines
Also broken on powerpc. While here, delete stale alpha definition. Hat: portmgr
Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Feb 9 19:39:30 2010 UTC (2 years ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_7_3_0
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +12 -12 lines
- Update to 0.5 PR: 143672 Submitted by: "Tassilo Philipp" <tphilipp@potion-studios.com> (maintainer)
Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Feb 5 15:21:05 2009 UTC (3 years ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_8_0_0, RELEASE_7_2_0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +12 -12 lines
- Update to 0.3, mark more archs as unsupported - While here, canonize identation and add tiny improvements (use PORTVERSION in MASTER_SITES url, no need to use full path in MAKEFILE) PR: 131223 Submitted by: Tassilo Philipp <tphilipp at potion-studios dot com> (maintainer)
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri May 30 20:06:29 2008 UTC (3 years, 8 months ago) by jadawin
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0, RELEASE_5_EOL
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +7 -1 lines
- Mark BROKEN on sparc64 Approved by: maintainer, mentor (implicit)
Revision 1.2: download - view: text, markup, annotated - select for diffs
Fri May 23 15:20:44 2008 UTC (3 years, 8 months ago) by jadawin
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +7 -3 lines
- Update to 0.2. PR: ports/123899 Submitted by: Tassilo Philipp <tphilipp potion-studios com> Approved by: tabthorpe (mentor)
Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Apr 14 00:47:00 2008 UTC (3 years, 9 months ago) by clsung
Branches: MAIN
The dyncall library encapsulates architecture-, OS- and compiler-specific function call semantics in a virtual "bind parameters from left to right and then call" interface allowing programmers to call C functions in a completely dynamic manner. In other workds, instead of calling a function directly, the dyncall library provides a mechanism to push the function parameters manually and to issue the call afterwards. This means, that a program can determine at runtime what function to call, and what parameters to pass to it. The library is written in C and assembly and provides a very simple C interface to program against. The library comes in very handy to power flexible message systems, dynamic function call dispatch mechanisms, closure implementations or even to bridge different programming languages. When it comes to language bindings, the dyncall library provides a clean and portable C interface to dynamically issue calls to foreign code using small kernels written in assembly. Instead of providing code for every bridged function call, which unnecessarily results in code bloat, only a couple of instructions are used to invoke every possible call. WWW: http://www.dyncall.org PR: ports/122720 Submitted by: Tassilo Philipp <tphilipp at potion-studios.com>
