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
fe18a118
Commit
fe18a118
authored
Sep 04, 2009
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#5047: remove Monterey support from configure.
parent
2e1308f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
51 deletions
+3
-51
README
README
+0
-8
configure
configure
+2
-22
configure.in
configure.in
+1
-21
No files found.
README
View file @
fe18a118
...
...
@@ -532,14 +532,6 @@ OS/2: If you are running Warp3 or Warp4 and have IBM's VisualAge C/C++
and type NMAKE. Threading and sockets are supported by default
in the resulting binaries of PYTHON15.DLL and PYTHON.EXE.
Monterey (64-bit AIX): The current Monterey C compiler (Visual Age)
uses the OBJECT_MODE={32|64} environment variable to set the
compilation mode to either 32-bit or 64-bit (32-bit mode is
the default). Presumably you want 64-bit compilation mode for
this 64-bit OS. As a result you must first set OBJECT_MODE=64
in your environment before configuring (./configure) or
building (make) Python on Monterey.
Reliant UNIX: The thread support does not compile on Reliant UNIX, and
there is a (minor) problem in the configure script for that
platform as well. This should be resolved in time for a
...
...
configure
View file @
fe18a118
#! /bin/sh
# From configure.in Revision: 740
44
.
# From configure.in Revision: 740
72
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
...
...
@@ -2057,7 +2057,7 @@ echo $ECHO_N "checking MACHDEP... $ECHO_C" >&6; }
if
test
-z
"
$MACHDEP
"
then
ac_sys_system
=
`
uname
-s
`
if
test
"
$ac_sys_system
"
=
"AIX"
-o
"
$ac_sys_system
"
=
"Monterey64"
\
if
test
"
$ac_sys_system
"
=
"AIX"
\
-o
"
$ac_sys_system
"
=
"UnixWare"
-o
"
$ac_sys_system
"
=
"OpenUNIX"
;
then
ac_sys_release
=
`
uname
-v
`
else
...
...
@@ -2306,9 +2306,6 @@ echo "$as_me: error: Unknown BeOS platform \"$BE_HOST_CPU\"" >&2;}
AR
=
"
\$
(srcdir)/Modules/ar_beos"
RANLIB
=
:
;;
Monterey
*
)
RANLIB
=
:
without_gcc
=
;;
*
)
without_gcc
=
no
;;
esac
fi
...
...
@@ -3917,10 +3914,6 @@ hp*|HP*)
case
$CC
in
cc|
*
/cc
)
CC
=
"
$CC
-Ae"
;;
esac
;;
Monterey
*
)
case
$CC
in
cc
)
CC
=
"
$CC
-Wl,-Bexport"
;;
esac
;;
SunOS
*
)
# Some functions have a prototype only with that define, e.g. confstr
...
...
@@ -3988,8 +3981,6 @@ then
exp_extra
=
"."
fi
LINKCC
=
"
\$
(srcdir)/Modules/makexp_aix Modules/python.exp
$exp_extra
\$
(LIBRARY);
$LINKCC
"
;;
Monterey64
*
)
LINKCC
=
"
$LINKCC
-L/usr/lib/ia64l64"
;;
QNX
*
)
# qcc must be used because the other compilers do not
# support -N.
...
...
@@ -4596,15 +4587,6 @@ then
OPT
=
"-O"
;;
esac
# The current (beta) Monterey compiler dies with optimizations
# XXX what is Monterey? Does it still die w/ -O? Can we get rid of this?
case
$ac_sys_system
in
Monterey
*
)
OPT
=
""
;;
esac
fi
...
...
@@ -14688,7 +14670,6 @@ then
else
LDSHARED
=
'$(CC) -G'
fi
;;
SCO_SV
*
)
LDSHARED
=
'$(CC) -Wl,-G,-Bexport'
;;
Monterey
*
)
LDSHARED
=
"cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64"
;;
CYGWIN
*
)
LDSHARED
=
"gcc -shared -Wl,--enable-auto-image-base"
;;
atheos
*
)
LDSHARED
=
"gcc -shared"
;;
*
)
LDSHARED
=
"ld"
;;
...
...
@@ -14727,7 +14708,6 @@ then
then
CCSHARED
=
"-fPIC"
else
CCSHARED
=
"-Kpic -belf"
fi
;;
Monterey
*
)
CCSHARED
=
"-G"
;;
IRIX
*
/6
*
)
case
$CC
in
*
gcc
*
)
CCSHARED
=
"-shared"
;;
*
)
CCSHARED
=
""
;;
...
...
configure.in
View file @
fe18a118
...
...
@@ -235,7 +235,7 @@ AC_MSG_CHECKING(MACHDEP)
if test -z "$MACHDEP"
then
ac_sys_system=`uname -s`
if test "$ac_sys_system" = "AIX"
-o "$ac_sys_system" = "Monterey64"
\
if test "$ac_sys_system" = "AIX" \
-o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
ac_sys_release=`uname -v`
else
...
...
@@ -457,9 +457,6 @@ AC_ARG_WITH(gcc,
AR="\$(srcdir)/Modules/ar_beos"
RANLIB=:
;;
Monterey*)
RANLIB=:
without_gcc=;;
*) without_gcc=no;;
esac])
AC_MSG_RESULT($without_gcc)
...
...
@@ -581,10 +578,6 @@ hp*|HP*)
case $CC in
cc|*/cc) CC="$CC -Ae";;
esac;;
Monterey*)
case $CC in
cc) CC="$CC -Wl,-Bexport";;
esac;;
SunOS*)
# Some functions have a prototype only with that define, e.g. confstr
AC_DEFINE(__EXTENSIONS__, 1, [Defined on Solaris to see additional function prototypes.])
...
...
@@ -645,8 +638,6 @@ then
exp_extra="."
fi
LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp $exp_extra \$(LIBRARY); $LINKCC";;
Monterey64*)
LINKCC="$LINKCC -L/usr/lib/ia64l64";;
QNX*)
# qcc must be used because the other compilers do not
# support -N.
...
...
@@ -900,15 +891,6 @@ then
OPT="-O"
;;
esac
# The current (beta) Monterey compiler dies with optimizations
# XXX what is Monterey? Does it still die w/ -O? Can we get rid of this?
case $ac_sys_system in
Monterey*)
OPT=""
;;
esac
fi
AC_SUBST(BASECFLAGS)
...
...
@@ -1722,7 +1704,6 @@ then
else LDSHARED='$(CC) -G'
fi;;
SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
atheos*) LDSHARED="gcc -shared";;
*) LDSHARED="ld";;
...
...
@@ -1759,7 +1740,6 @@ then
then CCSHARED="-fPIC"
else CCSHARED="-Kpic -belf"
fi;;
Monterey*) CCSHARED="-G";;
IRIX*/6*) case $CC in
*gcc*) CCSHARED="-shared";;
*) CCSHARED="";;
...
...
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