[Python-checkins] r43452 - python/trunk/Modules/_ctypes/libffi/configure python/trunk/Modules/_ctypes/libffi/configure.ac
thomas.heller
python-checkins at python.org
Thu Mar 30 13:51:59 CEST 2006
Author: thomas.heller
Date: Thu Mar 30 13:51:58 2006
New Revision: 43452
Modified:
python/trunk/Modules/_ctypes/libffi/configure
python/trunk/Modules/_ctypes/libffi/configure.ac
Log:
Try to build _ctypes on x86 openbsd.
Modified: python/trunk/Modules/_ctypes/libffi/configure
==============================================================================
--- python/trunk/Modules/_ctypes/libffi/configure (original)
+++ python/trunk/Modules/_ctypes/libffi/configure Thu Mar 30 13:51:58 2006
@@ -3490,6 +3490,7 @@
i*86-*-beos*) TARGET=X86; TARGETDIR=x86;;
i*86-*-freebsd* | i*86-*-kfreebsd*-gnu) TARGET=X86; TARGETDIR=x86;;
i*86-*-netbsdelf* | i*86-*-knetbsd*-gnu) TARGET=X86; TARGETDIR=x86;;
+i*86-*-openbsd*) TARGET=X86; TARGETDIR=x86;;
i*86-*-rtems*) TARGET=X86; TARGETDIR=x86;;
i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;;
i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
Modified: python/trunk/Modules/_ctypes/libffi/configure.ac
==============================================================================
--- python/trunk/Modules/_ctypes/libffi/configure.ac (original)
+++ python/trunk/Modules/_ctypes/libffi/configure.ac Thu Mar 30 13:51:58 2006
@@ -28,6 +28,7 @@
i*86-*-beos*) TARGET=X86; TARGETDIR=x86;;
i*86-*-freebsd* | i*86-*-kfreebsd*-gnu) TARGET=X86; TARGETDIR=x86;;
i*86-*-netbsdelf* | i*86-*-knetbsd*-gnu) TARGET=X86; TARGETDIR=x86;;
+i*86-*-openbsd*) TARGET=X86; TARGETDIR=x86;;
i*86-*-rtems*) TARGET=X86; TARGETDIR=x86;;
i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;;
i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
More information about the Python-checkins
mailing list