Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9b142aaa
Commit
9b142aaa
authored
Feb 05, 2011
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #11121: Fix building with --enable-shared.
parent
5405a0b3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
539 additions
and
493 deletions
+539
-493
Misc/NEWS
Misc/NEWS
+5
-0
configure
configure
+532
-490
configure.in
configure.in
+2
-3
No files found.
Misc/NEWS
View file @
9b142aaa
...
...
@@ -20,6 +20,11 @@ Library
- Issue #8275: Fix passing of callback arguments with ctypes under Win64.
Patch by Stan Mihai.
Build
-----
- Issue #11121: Fix building with --enable-shared.
What's New in Python 3.2 Release Candidate 2?
=============================================
...
...
configure
View file @
9b142aaa
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
9b142aaa
...
...
@@ -738,7 +738,7 @@ if test $enable_shared = "yes"; then
BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
INSTSONAME="$LDLIBRARY".$SOVERSION
if test
$with_pydebug == no
if test
"$with_pydebug" != yes
then
PY3LIBRARY=libpython3.so
fi
...
...
@@ -753,8 +753,7 @@ if test $enable_shared = "yes"; then
;;
esac
INSTSONAME="$LDLIBRARY".$SOVERSION
PY3LIBRARY=libpython3.so
if test $with_pydebug == no
if test "$with_pydebug" != yes
then
PY3LIBRARY=libpython3.so
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment