[Python-checkins] r57977 - in python/branches/release25-maint: Misc/NEWS Modules/_ctypes/libffi/configure Modules/_ctypes/libffi/configure.ac

matthias.klose python-checkins at python.org
Wed Sep 5 01:47:17 CEST 2007


Author: matthias.klose
Date: Wed Sep  5 01:47:16 2007
New Revision: 57977

Modified:
   python/branches/release25-maint/Misc/NEWS
   python/branches/release25-maint/Modules/_ctypes/libffi/configure
   python/branches/release25-maint/Modules/_ctypes/libffi/configure.ac
Log:
- Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.


Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Wed Sep  5 01:47:16 2007
@@ -108,6 +108,8 @@
 
 - Added support for linking the bsddb module against BerkeleyDB 4.6.x.
 
+- Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.
+
 Documentation
 -------------
 

Modified: python/branches/release25-maint/Modules/_ctypes/libffi/configure
==============================================================================
--- python/branches/release25-maint/Modules/_ctypes/libffi/configure	(original)
+++ python/branches/release25-maint/Modules/_ctypes/libffi/configure	Wed Sep  5 01:47:16 2007
@@ -3520,7 +3520,7 @@
 sh-*-linux* | sh[34]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
 sh-*-rtems*) TARGET=SH; TARGETDIR=sh;;
 sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
-hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;;
+hppa*-*-linux* | parisc*-*-linux*) TARGET=PA; TARGETDIR=pa;;
 esac
 
 if test $TARGETDIR = unknown; then

Modified: python/branches/release25-maint/Modules/_ctypes/libffi/configure.ac
==============================================================================
--- python/branches/release25-maint/Modules/_ctypes/libffi/configure.ac	(original)
+++ python/branches/release25-maint/Modules/_ctypes/libffi/configure.ac	Wed Sep  5 01:47:16 2007
@@ -71,7 +71,7 @@
 sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
 sh-*-rtems*) TARGET=SH; TARGETDIR=sh;;
 sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
-hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;;
+hppa*-*-linux* | parisc*-*-linux*) TARGET=PA; TARGETDIR=pa;;
 esac
 
 if test $TARGETDIR = unknown; then


More information about the Python-checkins mailing list