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
749400a9
Commit
749400a9
authored
Jul 24, 2011
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
parent
0e3c5a82
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 @
749400a9
...
@@ -829,6 +829,7 @@ Dirk Soede
...
@@ -829,6 +829,7 @@ Dirk Soede
Paul Sokolovsky
Paul Sokolovsky
Cody Somerville
Cody Somerville
Clay Spence
Clay Spence
Stefan Sperling
Per Spilling
Per Spilling
Joshua Spoerri
Joshua Spoerri
Noah Spurrier
Noah Spurrier
...
...
Misc/NEWS
View file @
749400a9
...
@@ -37,6 +37,8 @@ Core and Builtins
...
@@ -37,6 +37,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
- Issue #1813: Fix codec lookup under Turkish locales.
- Issue #1813: Fix codec lookup under Turkish locales.
- Issue #12591: Improve support of "universal newlines" in the subprocess
- Issue #12591: Improve support of "universal newlines" in the subprocess
...
...
configure
View file @
749400a9
...
@@ -4950,7 +4950,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
...
@@ -4950,7 +4950,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
PY3LIBRARY
=
libpython3.so
PY3LIBRARY
=
libpython3.so
fi
fi
;;
;;
Linux
*
|
GNU
*
|
NetBSD
*
|
FreeBSD
*
|
DragonFly
*
)
Linux
*
|
GNU
*
|
NetBSD
*
|
FreeBSD
*
|
DragonFly
*
|
OpenBSD
*
)
LDLIBRARY
=
'libpython$(LDVERSION).so'
LDLIBRARY
=
'libpython$(LDVERSION).so'
BLDLIBRARY
=
'-L. -lpython$(LDVERSION)'
BLDLIBRARY
=
'-L. -lpython$(LDVERSION)'
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
...
...
configure.in
View file @
749400a9
...
@@ -755,7 +755,7 @@ if test $enable_shared = "yes"; then
...
@@ -755,7 +755,7 @@ if test $enable_shared = "yes"; then
PY3LIBRARY=libpython3.so
PY3LIBRARY=libpython3.so
fi
fi
;;
;;
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*
|OpenBSD*
)
LDLIBRARY='libpython$(LDVERSION).so'
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
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