summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-31 18:58:21 +0000
committerGeorg Brandl <georg@python.org>2007-03-31 18:58:21 +0000
commit48642d4a0a168c8ae0f0e455afc20738cc26cea8 (patch)
treed3a448029684114a665ee049bf91a790e435938f
parent65407fb7344d4ecdeecb8733831365c23a713ab6 (diff)
downloadcpython-git-48642d4a0a168c8ae0f0e455afc20738cc26cea8.tar.gz
Bug #1655392: don't add -L/usr/lib/pythonX.Y/config to the LDFLAGS
returned by python-config if Python was built with --enable-shared because that prevented the shared library from being used. (backport from rev. 54634)
-rw-r--r--Misc/NEWS4
-rw-r--r--Misc/python-config.in4
2 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 77aa41485a..da35e71090 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -426,6 +426,10 @@ Tests
Build
-----
+- Bug #1655392: don't add -L/usr/lib/pythonX.Y/config to the LDFLAGS
+ returned by python-config if Python was built with --enable-shared
+ because that prevented the shared library from being used.
+
- Patch #1569798: fix a bug in distutils when building Python from a
directory within sys.exec_prefix.
diff --git a/Misc/python-config.in b/Misc/python-config.in
index e0215a2695..9ac44146d4 100644
--- a/Misc/python-config.in
+++ b/Misc/python-config.in
@@ -45,7 +45,9 @@ elif opt in ('--includes', '--cflags'):
elif opt in ('--libs', '--ldflags'):
libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
libs.append('-lpython'+pyver)
- if opt == '--ldflags':
+ # add the prefix/lib/pythonX.Y/config dir, but only if there is no
+ # shared library in prefix/lib/.
+ if opt == '--ldflags' and not getvar('Py_ENABLE_SHARED'):
libs.insert(0, '-L' + getvar('LIBPL'))
print ' '.join(libs)