------------------------------------------------------------
revno: 1374
fixes bug: https://launchpad.net/bugs/1098162
committer: Mark Sapiro <msap...@value.net>
branch nick: 2.1
timestamp: Thu 2013-01-10 20:01:33 -0800
message:
  Changed configure's method for getting Python's include directory from
  distutils.sysconfig.get_config_var('CONFINCLUDEPY') to
  distutils.sysconfig.get_python_inc().  (LP: 1098162)
modified:
  NEWS
  configure
  configure.in


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'NEWS'
--- NEWS	2012-12-15 04:37:33 +0000
+++ NEWS	2013-01-11 04:01:33 +0000
@@ -45,6 +45,10 @@
 
   Bug Fixes and other patches
 
+    - Changed configure's method for getting Python's include directory from
+      distutils.sysconfig.get_config_var('CONFINCLUDEPY') to
+      distutils.sysconfig.get_python_inc().  (LP: 1098162)
+
     - Added an Auto-Generated: header to password reminders.  (LP: 558240)
 
     - Fixed a bug where non-ascii characters in the real name in a subscription

=== modified file 'configure'
--- configure	2012-03-13 02:08:58 +0000
+++ configure	2013-01-11 04:01:33 +0000
@@ -2053,7 +2053,7 @@
         # some RedHat packages put distutils in python, but the C headers
         # are in python-devel so check for headers too.
         import os.path
-        pdothpath = distutils.sysconfig.get_config_var('CONFINCLUDEPY')
+        pdothpath = distutils.sysconfig.get_python_inc()
         if os.path.isfile(os.path.join(pdothpath, "Python.h")):
             res = "yes"
         else:

=== modified file 'configure.in'
--- configure.in	2012-03-13 02:08:58 +0000
+++ configure.in	2013-01-11 04:01:33 +0000
@@ -194,7 +194,7 @@
         # some RedHat packages put distutils in python, but the C headers
         # are in python-devel so check for headers too.
         import os.path
-        pdothpath = distutils.sysconfig.get_config_var('CONFINCLUDEPY')
+        pdothpath = distutils.sysconfig.get_python_inc()
         if os.path.isfile(os.path.join(pdothpath, "Python.h")):
             res = "yes"
         else:

_______________________________________________
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to