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
06f15bbc
Kaydet (Commit)
06f15bbc
authored
Ara 02, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Compute thread headers through shell expansion in configure.
Fixes #485679.
üst
b3cfc1d7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
3 deletions
+18
-3
Makefile.pre.in
Makefile.pre.in
+1
-1
configure
configure
+10
-2
configure.in
configure.in
+7
-0
No files found.
Makefile.pre.in
Dosyayı görüntüle @
06f15bbc
...
...
@@ -894,6 +894,6 @@ funny:
# Dependencies
Python/thread.o
:
$(srcdir)/Python/thread_*.h
Python/thread.o
:
@THREADHEADERS@
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
configure
Dosyayı görüntüle @
06f15bbc
#! /bin/sh
# From configure.in Revision: 1.28
1
# From configure.in Revision: 1.28
2
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
...
...
@@ -7513,9 +7513,16 @@ done
#fi
for
h
in
`
(
cd
$srcdir
;
echo
Python/thread_
*
.h
)
`
do
THREADHEADERS
=
"
$THREADHEADERS
\$
(srcdir)/
$h
"
done
SRCDIRS
=
"Parser Grammar Objects Python Modules"
echo
$ac_n
"checking for build directories""...
$ac_c
"
1>&6
echo
"configure:75
19
: checking for build directories"
>
&5
echo
"configure:75
26
: checking for build directories"
>
&5
for
dir
in
$SRCDIRS
;
do
if
test
!
-d
$dir
;
then
mkdir
$dir
...
...
@@ -7706,6 +7713,7 @@ s%@HAVE_GETHOSTBYNAME@%$HAVE_GETHOSTBYNAME%g
s%@LIBM@%
$LIBM
%g
s%@LIBC@%
$LIBC
%g
s%@UNICODE_OBJS@%
$UNICODE_OBJS
%g
s%@THREADHEADERS@%
$THREADHEADERS
%g
s%@SRCDIRS@%
$SRCDIRS
%g
CEOF
...
...
configure.in
Dosyayı görüntüle @
06f15bbc
...
...
@@ -2018,6 +2018,13 @@ done
# AC_MSG_RESULT(already exists)
#fi
AC_SUBST(THREADHEADERS)
for h in `(cd $srcdir;echo Python/thread_*.h)`
do
THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
done
AC_SUBST(SRCDIRS)
SRCDIRS="Parser Grammar Objects Python Modules"
AC_MSG_CHECKING(for build directories)
...
...
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