summaryrefslogtreecommitdiff
path: root/devel/libffi/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2013-04-06Update libffi to 3.0.13.obache1-2/+2
3.0.13 Mar-17-13 Add Meta support. Add missing Moxie bits. Fix stack alignment bug on 32-bit x86. Build fix for m68000 targets. Build fix for soft-float Power targets. Fix the install dir location for some platforms when building with GCC (OS X, Solaris). Fix Cygwin regression.
2013-03-14update to 3.0.12drochner1-3/+2
changes: -bugfixes -more compilers/CPUs supported
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-11fix closures on NetBSD/amd64 and possibly more NetBSD platforms wheredrochner1-1/+2
malloc'd memory is not automatically executable bump PKGREV
2012-09-14Update to libffi 3.0.11asau1-3/+3
3.0.11 Apr-11-12 Add support for variadic functions (ffi_prep_cif_var). Add Linux/x32 support. Add thiscall, fastcall and MSVC cdecl support on Windows. Add Amiga and newer MacOS support. Add m68k FreeMiNT support. Integration with iOS' xcode build tools. Fix Octeon and MC68881 support. Fix code pessimizations. Lots of build fixes. 3.0.10 Aug-23-11 Add support for Apple's iOS. Add support for ARM VFP ABI. Add RTEMS support for MIPS and M68K. Fix instruction cache clearing problems on ARM and SPARC. Fix the N64 build on mips-sgi-irix6.5. Enable builds with Microsoft's compiler. Enable x86 builds with Oracle's Solaris compiler. Fix support for calling code compiled with Oracle's Sparc Solaris compiler. Testsuite fixes for Tru64 Unix. Additional platform support.
2011-09-27Fix build for Solaris x86 with older gcc per PR#42865tez1-1/+6
2011-04-24The library uses m68k_sync_icache from libm68k on NetBSD/m68k.asau1-1/+7
Fix as proposed by <obache> in PR pkg/44901. Bump package revision.
2010-02-14make tru64 build fix work with new libtooltnn1-2/+2
2010-01-16Update to libffi 3.0.9.asau1-3/+2
This release includes many important fixes as well as a couple of new ports.
2009-09-20Fix build on Tru64.tnn1-1/+8
2009-05-26Update from version 3.0.8nb1 to 3.0.8nb2.he1-2/+3
Pkgsrc changes: o Add portability to the various mips-based NetBSD ports. The self-tests even complete without any unexpected failures.
2009-04-17Attempt to make this build on NetBSD/powerpc. While at it, correctly setrh1-2/+3
INFO_FILES to 'yes'. Bump PKGREVISION.
2009-02-21Update to libffi 3.0.8.asau1-2/+10
Changes since previous (3.0.6) include Solaris 10/x86 and FreeBSD/powerpc support, code cleanup and bug fixes. pkgsrc changes: add testing support. Since there's no support for test depends, implement a hack proposed by <obache>.
2008-10-11Update to libffi-3.0.6. From Aleksej Saushev, who's taking maintainership,dholland1-11/+11
with an adjustment for info file handling. Changes from 2.x appear to be large and aren't concisely anywhere I can find. Changes since 3.0.0: 3.0.6 Jul-17-08 Fix for closures on sh. Mark the sh/sh64 stack as non-executable. (both thanks to Kaz Kojima) 3.0.5 Apr-3-08 Fix libffi.pc file. Fix #define ARM for IcedTea users. Fix x86 closure bug. 3.0.4 Feb-24-08 Fix x86 OpenBSD configury. 3.0.3 Feb-22-08 Enable x86 OpenBSD thanks to Thomas Heller, and x86-64 FreeBSD thanks to Björn König and Andreas Tobler. Clean up test instruction in README. 3.0.2 Feb-21-08 Improved x86 FreeBSD support. Thanks to Björn König. 3.0.1 Feb-15-08 Fix instruction cache flushing bug on MIPS. Thanks to David Daney. 3.0.0 Feb-15-08 Many changes, mostly thanks to the GCC project. Cygnus Solutions is now Red Hat.
2008-04-03Fix lvalue cast on amd64. Mark as DESTDIR safe.joerg1-1/+3
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-01-08Override config.guess and config.sub. Add DragonFly.joerg1-1/+3
2005-03-07Use gcc-3.3.5 tarball. Very minor changes. Bump PKGREVISION.wiz1-4/+4
Adapt patch-aa to include (currently untested) powerpc support.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2003-12-24s/@netbsd.org/@NetBSD.org/ in MAINTAINER.jmmv1-2/+2
2003-07-18Initial import of libffi-2.0beta into the NetBSD Packages Collection.agc1-0/+18
The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. Libffi can be used in such programs to provide a bridge from the interpreter program to compiled code. Ffi stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages.