------------------------------------------------------------
revno: 1238
fixes bug: https://launchpad.net/bugs/1098162
committer: Mark Sapiro <[email protected]>
branch nick: 2.2
timestamp: Thu 2013-01-10 20:03:48 -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.2
https://code.launchpad.net/~mailman-coders/mailman/2.2
Your team Mailman Checkins is subscribed to branch lp:mailman/2.2.
To unsubscribe from this branch go to
https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'NEWS'
--- NEWS 2012-12-15 04:39:20 +0000
+++ NEWS 2013-01-11 04:03:48 +0000
@@ -89,6 +89,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:07:01 +0000
+++ configure 2013-01-11 04:03:48 +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:07:01 +0000
+++ configure.in 2013-01-11 04:03:48 +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
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org