You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
868 B
18 lines
868 B
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: |
|
libs.extend(getvar('LINKFORSHARED').split()) |
|
print ' '.join(libs) |
|
|
|
+ elif opt == '--extension-suffix': |
|
+ print (sys.pydebug and "_d" or "") + sysconfig.get_config_var('SO')
|
|
|