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
8c8adf6d
Commit
8c8adf6d
authored
Jan 17, 2013
by
Stefan Krah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16987: Fix definition of SHLIB_EXT.
parent
ebee49a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
configure
configure
+6
-5
configure.ac
configure.ac
+2
-1
No files found.
configure
View file @
8c8adf6d
...
@@ -8384,11 +8384,6 @@ esac
...
@@ -8384,11 +8384,6 @@ esac
cat
>>
confdefs.h
<<
_ACEOF
#define SHLIB_EXT "
$SO
"
_ACEOF
# LDSHARED is the ld *command* used to create shared library
# LDSHARED is the ld *command* used to create shared library
# -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
# -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
# (Shared libraries in this instance are shared modules to be loaded into
# (Shared libraries in this instance are shared modules to be loaded into
...
@@ -13721,6 +13716,12 @@ fi
...
@@ -13721,6 +13716,12 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$SO
"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$SO
"
>
&5
$as_echo
"
$SO
"
>
&6
;
}
$as_echo
"
$SO
"
>
&6
;
}
cat
>>
confdefs.h
<<
_ACEOF
#define SHLIB_EXT "
$SO
"
_ACEOF
# Check whether right shifting a negative integer extends the sign bit
# Check whether right shifting a negative integer extends the sign bit
# or fills with zeros (like the Cray J90, according to Tim Peters).
# or fills with zeros (like the Cray J90, according to Tim Peters).
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking whether right shift extends the sign bit"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking whether right shift extends the sign bit"
>
&5
...
...
configure.ac
View file @
8c8adf6d
...
@@ -1898,7 +1898,6 @@ AC_SUBST(BLDSHARED)
...
@@ -1898,7 +1898,6 @@ AC_SUBST(BLDSHARED)
AC_SUBST(CCSHARED)
AC_SUBST(CCSHARED)
AC_SUBST(LINKFORSHARED)
AC_SUBST(LINKFORSHARED)
AC_DEFINE_UNQUOTED(SHLIB_EXT, "$SO", [Define this to be extension of shared libraries (including the dot!).])
# LDSHARED is the ld *command* used to create shared library
# LDSHARED is the ld *command* used to create shared library
# -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
# -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
# (Shared libraries in this instance are shared modules to be loaded into
# (Shared libraries in this instance are shared modules to be loaded into
...
@@ -3956,6 +3955,8 @@ else
...
@@ -3956,6 +3955,8 @@ else
fi
fi
AC_MSG_RESULT($SO)
AC_MSG_RESULT($SO)
AC_DEFINE_UNQUOTED(SHLIB_EXT, "$SO", [Define this to be extension of shared libraries (including the dot!).])
# Check whether right shifting a negative integer extends the sign bit
# Check whether right shifting a negative integer extends the sign bit
# or fills with zeros (like the Cray J90, according to Tim Peters).
# or fills with zeros (like the Cray J90, according to Tim Peters).
AC_MSG_CHECKING(whether right shift extends the sign bit)
AC_MSG_CHECKING(whether right shift extends the sign bit)
...
...
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