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
210f2cf5
Commit
210f2cf5
authored
Dec 02, 2001
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compute thread headers through shell expansion in configure.
Fixes #485679.
parent
5e105092
Changes
3
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
View file @
210f2cf5
...
...
@@ -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
View file @
210f2cf5
#! /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
View file @
210f2cf5
...
...
@@ -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