From f040d7de94a057f2c26c8b3d140b33273bfcc595 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 18 Oct 2010 17:09:07 +0000 Subject: One more change for issue 9807, by Matthias Klose. This adds $ABIFLAGS to the static library, since it should match the shared library name. Also, include the abiflags in python-config --libs. --- Misc/python-config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Misc/python-config.in') diff --git a/Misc/python-config.in b/Misc/python-config.in index ba9183e3cc..1d4a81d850 100644 --- a/Misc/python-config.in +++ b/Misc/python-config.in @@ -1,4 +1,5 @@ #!@EXENAME@ +# -*- python -*- import getopt import os @@ -45,7 +46,7 @@ for opt in opt_flags: elif opt in ('--libs', '--ldflags'): libs = getvar('LIBS').split() + getvar('SYSLIBS').split() - libs.append('-lpython'+pyver) + libs.append('-lpython' + pyver + sys.abiflags) # add the prefix/lib/pythonX.Y/config dir, but only if there is no # shared library in prefix/lib/. if opt == '--ldflags': -- cgit v1.2.1