2011-08-23 22:28:07 +00:00
|
|
|
diff -up Python-2.7.2/Misc/python-config.in.add-extension-suffix-to-python-config Python-2.7.2/Misc/python-config.in
|
|
|
|
--- Python-2.7.2/Misc/python-config.in.add-extension-suffix-to-python-config 2011-08-23 18:15:41.832497124 -0400
|
|
|
|
+++ Python-2.7.2/Misc/python-config.in 2011-08-23 18:17:25.854490011 -0400
|
|
|
|
@@ -6,7 +6,7 @@ import getopt
|
|
|
|
from distutils import sysconfig
|
|
|
|
|
|
|
|
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
|
|
|
|
- 'ldflags', 'help']
|
|
|
|
+ 'ldflags', 'extension-suffix', 'help']
|
|
|
|
|
|
|
|
def exit_with_usage(code=1):
|
|
|
|
print >>sys.stderr, "Usage: %s [%s]" % (sys.argv[0],
|
|
|
|
@@ -54,3 +54,5 @@ for opt in opt_flags:
|
Updated to Python 2.7.4.
- Refreshed patches: 0 (config), 7 (sqlite encoding), 16 (rpath in config),
55 (systemtap), 111 (no static lib), 112 (debug build), 113 (more
configuration flags), 130 (add extension to python config), 134 (fix
COUNT_ALLOCS in test_sys), 146 (haslib FIPS), 147 (add debug malloc stats),
153 (fix gdb test noise), 157 (uid, gid overflow - fixed upstream, just
keeping few more downstream tests), 165 (crypt module salt backport),
175 (fix configure Wformat), 5000 (regenerated autotooling patch)
- Dropped patches: 101 (lib64 regex; merged upstream), 171 (exception on
missing /dev/urandom; merged upstream), 172 (poll for multiprocessing socket
connection; merged upstream)
2013-04-09 08:54:58 +00:00
|
|
|
libs.extend(getvar('LINKFORSHARED').split())
|
2011-08-23 22:28:07 +00:00
|
|
|
print ' '.join(libs)
|
|
|
|
|
|
|
|
+ elif opt == '--extension-suffix':
|
|
|
|
+ print (sys.pydebug and "_d" or "") + sysconfig.get_config_var('SO')
|