[Python-checkins] r58654 - python/branches/release25-maint/configure python/branches/release25-maint/configure.in

matthias.klose python-checkins at python.org
Thu Oct 25 08:38:01 CEST 2007


Author: matthias.klose
Date: Thu Oct 25 08:38:01 2007
New Revision: 58654

Modified:
   python/branches/release25-maint/configure
   python/branches/release25-maint/configure.in
Log:
- Build using system ffi library on arm*-linux*, pass --with-system-ffi to CONFIG_ARGS


Modified: python/branches/release25-maint/configure
==============================================================================
--- python/branches/release25-maint/configure	(original)
+++ python/branches/release25-maint/configure	Thu Oct 25 08:38:01 2007
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 57905 .
+# From configure.in Revision: 58647 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.5.
 #
@@ -12433,7 +12433,7 @@
 
 if test -z "$with_system_ffi" && test "$ac_cv_header_ffi_h" = yes; then
 	case "$ac_sys_system/`uname -m`" in
-	Linux/arm*)  with_system_ffi="yes";;
+	Linux/arm*)  with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";;
 	*) with_system_ffi="no"
 	esac
 fi

Modified: python/branches/release25-maint/configure.in
==============================================================================
--- python/branches/release25-maint/configure.in	(original)
+++ python/branches/release25-maint/configure.in	Thu Oct 25 08:38:01 2007
@@ -1728,7 +1728,7 @@
 
 if test -z "$with_system_ffi" && test "$ac_cv_header_ffi_h" = yes; then
 	case "$ac_sys_system/`uname -m`" in
-	Linux/arm*)  with_system_ffi="yes";;
+	Linux/arm*)  with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";;
 	*) with_system_ffi="no"
 	esac
 fi


More information about the Python-checkins mailing list