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
eef2d3b2
Commit
eef2d3b2
authored
Nov 06, 2004
by
Anthony Baxter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regenerated configure from configure.in
parent
8a92dd58
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
13 deletions
+8
-13
configure
configure
+8
-13
No files found.
configure
View file @
eef2d3b2
#! /bin/sh
#! /bin/sh
# From configure.in Revision: 1.47
2
.
# From configure.in Revision: 1.47
4
.
# Guess values for system-dependent variables and create Makefiles.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.4.
# Generated by GNU Autoconf 2.59 for python 2.4.
#
#
...
@@ -10164,9 +10164,8 @@ then
...
@@ -10164,9 +10164,8 @@ then
fi
fi
case
"
$enable_toolbox_glue
"
in
case
"
$enable_toolbox_glue
"
in
yes
)
yes
)
extra_frameworks
=
"-framework CoreServices -framework Foundation"
extra_machdep_objs
=
"Python/mactoolboxglue.o"
extra_machdep_objs
=
"Python/mactoolboxglue.o"
extra_undefs
=
"-u _
_dummy -u _
PyMac_Error"
extra_undefs
=
"-u _PyMac_Error"
cat
>>
confdefs.h
<<
\
_ACEOF
cat
>>
confdefs.h
<<
\
_ACEOF
#define USE_TOOLBOX_OBJECT_GLUE 1
#define USE_TOOLBOX_OBJECT_GLUE 1
...
@@ -10174,7 +10173,6 @@ _ACEOF
...
@@ -10174,7 +10173,6 @@ _ACEOF
;;
;;
*
)
*
)
extra_frameworks
=
""
extra_machdep_objs
=
""
extra_machdep_objs
=
""
extra_undefs
=
""
extra_undefs
=
""
;;
;;
...
@@ -10186,12 +10184,11 @@ echo "${ECHO_T}$enable_toolbox_glue" >&6
...
@@ -10186,12 +10184,11 @@ echo "${ECHO_T}$enable_toolbox_glue" >&6
case
$ac_sys_system
/
$ac_sys_release
in
case
$ac_sys_system
/
$ac_sys_release
in
Darwin/1.3
*
)
Darwin/1.3
*
)
LIBTOOL_CRUFT
=
"-lcc_dynamic -arch_only ppc"
LIBTOOL_CRUFT
=
"-lcc_dynamic -arch_only ppc"
LIBTOOL_CRUFT
=
"
$LIBTOOL_CRUFT
$extra_frameworks
"
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -compatibility_version $(VERSION) -current_version $(VERSION)'
;;
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -compatibility_version $(VERSION) -current_version $(VERSION)'
;;
Darwin/
*
)
Darwin/
*
)
LIBTOOL_CRUFT
=
"-lcc_dynamic -arch_only ppc"
LIBTOOL_CRUFT
=
"-lcc_dynamic -arch_only ppc"
LIBTOOL_CRUFT
=
"
$LIBTOOL_CRUFT
$extra_frameworks
"
LIBTOOL_CRUFT
=
"
$LIBTOOL_CRUFT
"
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -compatibility_version $(VERSION) -current_version $(VERSION)'
;;
LIBTOOL_CRUFT
=
$LIBTOOL_CRUFT
' -compatibility_version $(VERSION) -current_version $(VERSION)'
;;
esac
esac
...
@@ -10409,22 +10406,20 @@ then
...
@@ -10409,22 +10406,20 @@ then
Linux
*
|
GNU
*
)
LINKFORSHARED
=
"-Xlinker -export-dynamic"
;;
Linux
*
|
GNU
*
)
LINKFORSHARED
=
"-Xlinker -export-dynamic"
;;
# -u libsys_s pulls in all symbols in libsys
# -u libsys_s pulls in all symbols in libsys
Darwin/
*
)
Darwin/
*
)
# -u __dummy makes the linker aware of the objc runtime
# -u _PyMac_Error is needed to pull in the mac toolbox glue,
# in System.framework; otherwise, __objcInit (referenced in
# which is
# crt1.o) gets erroneously defined as common, which breaks dynamic
# loading of any modules which reference it in System.framework.
# -u _PyMac_Error is needed to pull in the mac toolbox glue, which is
# not used by the core itself but which needs to be in the core so
# not used by the core itself but which needs to be in the core so
# that dynamically loaded extension modules have access to it.
# that dynamically loaded extension modules have access to it.
# -prebind is no longer used, because it actually seems to give a
# -prebind is no longer used, because it actually seems to give a
# slowdown in stead of a speedup, maybe due to the large number of
# slowdown in stead of a speedup, maybe due to the large number of
# dynamic loads Python does.
# dynamic loads Python does.
LINKFORSHARED
=
"
$extra_undefs
-framework System"
LINKFORSHARED
=
"
$extra_undefs
"
if
test
"
$enable_framework
"
if
test
"
$enable_framework
"
then
then
LINKFORSHARED
=
"
$LINKFORSHARED
-Wl,-F. -framework "
'$(PYTHONFRAMEWORK)'
LINKFORSHARED
=
"
$LINKFORSHARED
-Wl,-F. -framework "
'$(PYTHONFRAMEWORK)'
fi
fi
LINKFORSHARED
=
"
$LINKFORSHARED
$extra_frameworks
"
;;
LINKFORSHARED
=
"
$LINKFORSHARED
"
;;
OpenUNIX
*
|
UnixWare
*
)
LINKFORSHARED
=
"-Wl,-Bexport"
;;
OpenUNIX
*
|
UnixWare
*
)
LINKFORSHARED
=
"-Wl,-Bexport"
;;
SCO_SV
*
)
LINKFORSHARED
=
"-Wl,-Bexport"
;;
SCO_SV
*
)
LINKFORSHARED
=
"-Wl,-Bexport"
;;
ReliantUNIX
*
)
LINKFORSHARED
=
"-W1 -Blargedynsym"
;;
ReliantUNIX
*
)
LINKFORSHARED
=
"-W1 -Blargedynsym"
;;
...
...
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