Kaydet (Commit) 9b80782c authored tarafından Moshe Zadka's avatar Moshe Zadka

- #117606 - configure.in, configure - use gcc -shared and gcc -fPIC

üst 7c9bcf82
......@@ -139,6 +139,8 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid
the start tag was for an empty element of the type <tag .../>. This
modification fixes the problem.
- #117606 - configure.in, configure - use gcc -shared and gcc -fPIC
What's New in Python 2.0?
=========================
......
This diff is collapsed.
......@@ -308,8 +308,8 @@ then
case $GCC in
yes)
case $ac_cv_prog_cc_g in
yes) OPT="-g -O2 -Wall -Wstrict-prototypes";;
*) OPT="-O2 -Wall -Wstrict-prototypes";;
yes) OPT="-g -O2 -Wall -Wstrict-prototypes -fPIC";;
*) OPT="-O2 -Wall -Wstrict-prototypes -fPIC";;
esac
;;
*) OPT="-O";;
......@@ -564,7 +564,7 @@ then
SunOS/4*) LDSHARED="ld";;
SunOS/5*)
if test "$GCC" = "yes"
then LDSHARED='$(CC) -G'
then LDSHARED='$(CC) -shared'
else LDSHARED="ld -G";
fi ;;
hp*|HP*) LDSHARED="ld -b";;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment