Skip to content

Commit 101284e

Browse files
author
thomas.heller
committed
More files from libffi 3.0.5.
Removed libffi.pc.in because it is not needed for ctypes. git-svn-id: http://svn.python.org/projects/python/trunk@62153 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 159b4f7 commit 101284e

4 files changed

Lines changed: 20 additions & 22 deletions

File tree

Modules/_ctypes/libffi/README

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Status
22
======
33

4-
libffi-3.0.4 was released on February 24, 2008. Check the libffi web
4+
libffi-3.0.5 was released on April 3, 2008. Check the libffi web
55
page for updates: <URL:http://sourceware.org/libffi/>.
66

77

@@ -158,6 +158,11 @@ arguments' test).
158158
History
159159
=======
160160

161+
3.0.5 Apr-3-08
162+
Fix libffi.pc file.
163+
Fix #define ARM for IcedTea users.
164+
Fix x86 closure bug.
165+
161166
3.0.4 Feb-24-08
162167
Fix x86 OpenBSD configury.
163168

Modules/_ctypes/libffi/configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.61 for libffi 3.0.4.
3+
# Generated by GNU Autoconf 2.61 for libffi 3.0.5.
44
#
55
# Report bugs to <http://gcc.gnu.org/bugs.html>.
66
#
@@ -728,8 +728,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
728728
# Identity of this package.
729729
PACKAGE_NAME='libffi'
730730
PACKAGE_TARNAME='libffi'
731-
PACKAGE_VERSION='3.0.4'
732-
PACKAGE_STRING='libffi 3.0.4'
731+
PACKAGE_VERSION='3.0.5'
732+
PACKAGE_STRING='libffi 3.0.5'
733733
PACKAGE_BUGREPORT='http://gcc.gnu.org/bugs.html'
734734

735735
# Factoring default headers for most tests.
@@ -1459,7 +1459,7 @@ if test "$ac_init_help" = "long"; then
14591459
# Omit some internal or obsolete options to make the list less imposing.
14601460
# This message is too long to be a string in the A/UX 3.1 sh.
14611461
cat <<_ACEOF
1462-
\`configure' configures libffi 3.0.4 to adapt to many kinds of systems.
1462+
\`configure' configures libffi 3.0.5 to adapt to many kinds of systems.
14631463

14641464
Usage: $0 [OPTION]... [VAR=VALUE]...
14651465

@@ -1530,7 +1530,7 @@ fi
15301530

15311531
if test -n "$ac_init_help"; then
15321532
case $ac_init_help in
1533-
short | recursive ) echo "Configuration of libffi 3.0.4:";;
1533+
short | recursive ) echo "Configuration of libffi 3.0.5:";;
15341534
esac
15351535
cat <<\_ACEOF
15361536

@@ -1640,7 +1640,7 @@ fi
16401640
test -n "$ac_init_help" && exit $ac_status
16411641
if $ac_init_version; then
16421642
cat <<\_ACEOF
1643-
libffi configure 3.0.4
1643+
libffi configure 3.0.5
16441644
generated by GNU Autoconf 2.61
16451645

16461646
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1654,7 +1654,7 @@ cat >config.log <<_ACEOF
16541654
This file contains any messages produced by compilers while
16551655
running configure, to aid debugging if configure makes a mistake.
16561656

1657-
It was created by libffi $as_me 3.0.4, which was
1657+
It was created by libffi $as_me 3.0.5, which was
16581658
generated by GNU Autoconf 2.61. Invocation command line was
16591659

16601660
$ $0 $@
@@ -2477,7 +2477,7 @@ fi
24772477

24782478
# Define the identity of the package.
24792479
PACKAGE='libffi'
2480-
VERSION='3.0.4'
2480+
VERSION='3.0.5'
24812481

24822482

24832483
cat >>confdefs.h <<_ACEOF
@@ -23327,7 +23327,7 @@ exec 6>&1
2332723327
# report actual input values of CONFIG_FILES etc. instead of their
2332823328
# values after options handling.
2332923329
ac_log="
23330-
This file was extended by libffi $as_me 3.0.4, which was
23330+
This file was extended by libffi $as_me 3.0.5, which was
2333123331
generated by GNU Autoconf 2.61. Invocation command line was
2333223332

2333323333
CONFIG_FILES = $CONFIG_FILES
@@ -23384,7 +23384,7 @@ Report bugs to <bug-autoconf@gnu.org>."
2338423384
_ACEOF
2338523385
cat >>$CONFIG_STATUS <<_ACEOF
2338623386
ac_cs_version="\\
23387-
libffi config.status 3.0.4
23387+
libffi config.status 3.0.5
2338823388
configured by $0, generated by GNU Autoconf 2.61,
2338923389
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
2339023390

Modules/_ctypes/libffi/configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
dnl Process this with autoconf to create configure
2+
#
3+
# file from libffi - slightly patched for ctypes
4+
#
25

36
AC_PREREQ(2.59)
47

5-
AC_INIT([libffi], [3.0.4], [http://gcc.gnu.org/bugs.html])
8+
AC_INIT([libffi], [3.0.5], [http://gcc.gnu.org/bugs.html])
69
AC_CONFIG_HEADERS([fficonfig.h])
710

811
AC_CANONICAL_SYSTEM

Modules/_ctypes/libffi/libffi.pc.in

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)