Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
bc0e83c2
Kaydet (Commit)
bc0e83c2
authored
Şub 11, 2010
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Finish fix for issue 7715, after explicit search for calls to `arch`
üst
9922f178
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
configure
configure
+5
-5
configure.in
configure.in
+4
-4
No files found.
configure
Dosyayı görüntüle @
bc0e83c2
#! /bin/sh
#! /bin/sh
# From configure.in Revision: 7
7588
.
# From configure.in Revision: 7
8150
.
# Guess values for system-dependent variables and create Makefiles.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
#
...
@@ -4748,7 +4748,7 @@ echo "${ECHO_T}$CC" >&6; }
...
@@ -4748,7 +4748,7 @@ echo "${ECHO_T}$CC" >&6; }
cur_target='10.5'
cur_target='10.5'
fi
fi
else
else
if test `arch` = "i386"; then
if test `
/usr/bin/
arch` = "i386"; then
# On Intel macs default to a deployment
# On Intel macs default to a deployment
# target of 10.4, that's the first OSX
# target of 10.4, that's the first OSX
# release with Intel support.
# release with Intel support.
...
@@ -14579,7 +14579,7 @@ case $ac_sys_system/$ac_sys_release in
...
@@ -14579,7 +14579,7 @@ case $ac_sys_system/$ac_sys_release in
if test "${enable_universalsdk}"; then
if test "${enable_universalsdk}"; then
:
:
else
else
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`"
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `
/usr/bin/
arch`"
fi
fi
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)';;
...
@@ -14647,7 +14647,7 @@ fi
...
@@ -14647,7 +14647,7 @@ fi
if test "${ac_osx_32bit}" = "yes"; then
if test "${ac_osx_32bit}" = "yes"; then
case `arch` in
case `
/usr/bin/
arch` in
i386)
i386)
MACOSX_DEFAULT_ARCH="i386"
MACOSX_DEFAULT_ARCH="i386"
;;
;;
...
@@ -14661,7 +14661,7 @@ echo "$as_me: error: Unexpected output of 'arch' on OSX" >&2;}
...
@@ -14661,7 +14661,7 @@ echo "$as_me: error: Unexpected output of 'arch' on OSX" >&2;}
;;
;;
esac
esac
else
else
case `arch` in
case `
/usr/bin/
arch` in
i386)
i386)
MACOSX_DEFAULT_ARCH="x86_64"
MACOSX_DEFAULT_ARCH="x86_64"
;;
;;
...
...
configure.in
Dosyayı görüntüle @
bc0e83c2
...
@@ -991,7 +991,7 @@ yes)
...
@@ -991,7 +991,7 @@ yes)
cur_target='10.5'
cur_target='10.5'
fi
fi
else
else
if test `arch` = "i386"; then
if test `
/usr/bin/
arch` = "i386"; then
# On Intel macs default to a deployment
# On Intel macs default to a deployment
# target of 10.4, that's the first OSX
# target of 10.4, that's the first OSX
# release with Intel support.
# release with Intel support.
...
@@ -1615,7 +1615,7 @@ case $ac_sys_system/$ac_sys_release in
...
@@ -1615,7 +1615,7 @@ case $ac_sys_system/$ac_sys_release in
if test "${enable_universalsdk}"; then
if test "${enable_universalsdk}"; then
:
:
else
else
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`"
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `
/usr/bin/
arch`"
fi
fi
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)';;
...
@@ -1642,7 +1642,7 @@ case $ac_sys_system/$ac_sys_release in
...
@@ -1642,7 +1642,7 @@ case $ac_sys_system/$ac_sys_release in
ac_osx_32bit=yes)
ac_osx_32bit=yes)
if test "${ac_osx_32bit}" = "yes"; then
if test "${ac_osx_32bit}" = "yes"; then
case `arch` in
case `
/usr/bin/
arch` in
i386)
i386)
MACOSX_DEFAULT_ARCH="i386"
MACOSX_DEFAULT_ARCH="i386"
;;
;;
...
@@ -1654,7 +1654,7 @@ case $ac_sys_system/$ac_sys_release in
...
@@ -1654,7 +1654,7 @@ case $ac_sys_system/$ac_sys_release in
;;
;;
esac
esac
else
else
case `arch` in
case `
/usr/bin/
arch` in
i386)
i386)
MACOSX_DEFAULT_ARCH="x86_64"
MACOSX_DEFAULT_ARCH="x86_64"
;;
;;
...
...
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