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
dc1d548e
Commit
dc1d548e
authored
Jul 24, 2011
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Plain Diff
Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
parents
5a24d829
749400a9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+1
-1
configure.in
configure.in
+1
-1
No files found.
Misc/ACKS
View file @
dc1d548e
...
...
@@ -885,6 +885,7 @@ Paul Sokolovsky
Cody Somerville
Edoardo Spadolini
Clay Spence
Stefan Sperling
Per Spilling
Joshua Spoerri
Noah Spurrier
...
...
Misc/NEWS
View file @
dc1d548e
...
...
@@ -237,6 +237,8 @@ Core and Builtins
Library
-------
- Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
- Issue #1813: Fix codec lookup under Turkish locales.
- Issue #12591: Improve support of "universal newlines" in the subprocess
...
...
configure
View file @
dc1d548e
...
...
@@ -5005,7 +5005,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
PY3LIBRARY
=
libpython3.so
fi
;;
Linux
*
|
GNU
*
|
NetBSD
*
|
FreeBSD
*
|
DragonFly
*
)
Linux
*
|
GNU
*
|
NetBSD
*
|
FreeBSD
*
|
DragonFly
*
|
OpenBSD
*
)
LDLIBRARY
=
'libpython$(LDVERSION).so'
BLDLIBRARY
=
'-L. -lpython$(LDVERSION)'
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
...
...
configure.in
View file @
dc1d548e
...
...
@@ -769,7 +769,7 @@ if test $enable_shared = "yes"; then
PY3LIBRARY=libpython3.so
fi
;;
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*
|OpenBSD*
)
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
...
...
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