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
6b9fdf52
Commit
6b9fdf52
authored
Aug 20, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Globally renamed join() to joinpath() to avoid compilation error on Cray.
parent
725d941f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
22 deletions
+22
-22
Modules/getpath.c
Modules/getpath.c
+22
-22
No files found.
Modules/getpath.c
View file @
6b9fdf52
...
...
@@ -177,7 +177,7 @@ exists(filename)
static
void
join
(
buffer
,
stuff
)
join
path
(
buffer
,
stuff
)
char
*
buffer
;
char
*
stuff
;
{
...
...
@@ -207,7 +207,7 @@ search_for_prefix(argv0_path, home)
/* Check to see if argv[0] is in the build directory */
strcpy
(
prefix
,
argv0_path
);
join
(
prefix
,
"Modules/Setup"
);
join
path
(
prefix
,
"Modules/Setup"
);
if
(
exists
(
prefix
))
{
/* Check VPATH to see if argv0_path is in the build directory.
* Complication: the VPATH passed in is relative to the
...
...
@@ -222,10 +222,10 @@ search_for_prefix(argv0_path, home)
if
(
vpath
[
0
]
==
'.'
&&
vpath
[
1
]
==
'.'
&&
vpath
[
2
]
==
'/'
)
vpath
+=
3
;
strcpy
(
prefix
,
argv0_path
);
join
(
prefix
,
vpath
);
join
path
(
prefix
,
vpath
);
reduce
(
prefix
);
join
(
prefix
,
"Lib"
);
join
(
prefix
,
LANDMARK
);
join
path
(
prefix
,
"Lib"
);
join
path
(
prefix
,
LANDMARK
);
if
(
exists
(
prefix
))
return
-
1
;
}
...
...
@@ -237,8 +237,8 @@ search_for_prefix(argv0_path, home)
delim
=
strchr
(
prefix
,
DELIM
);
if
(
delim
)
*
delim
=
'\0'
;
join
(
prefix
,
lib_python
);
join
(
prefix
,
LANDMARK
);
join
path
(
prefix
,
lib_python
);
join
path
(
prefix
,
LANDMARK
);
if
(
exists
(
prefix
))
return
1
;
}
...
...
@@ -247,8 +247,8 @@ search_for_prefix(argv0_path, home)
strcpy
(
prefix
,
argv0_path
);
do
{
n
=
strlen
(
prefix
);
join
(
prefix
,
lib_python
);
join
(
prefix
,
LANDMARK
);
join
path
(
prefix
,
lib_python
);
join
path
(
prefix
,
LANDMARK
);
if
(
exists
(
prefix
))
return
1
;
prefix
[
n
]
=
'\0'
;
...
...
@@ -257,8 +257,8 @@ search_for_prefix(argv0_path, home)
/* Look at configure's PREFIX */
strcpy
(
prefix
,
PREFIX
);
join
(
prefix
,
lib_python
);
join
(
prefix
,
LANDMARK
);
join
path
(
prefix
,
lib_python
);
join
path
(
prefix
,
LANDMARK
);
if
(
exists
(
prefix
))
return
1
;
...
...
@@ -276,7 +276,7 @@ search_for_exec_prefix(argv0_path, home)
/* Check to see if argv[0] is in the build directory */
strcpy
(
exec_prefix
,
argv0_path
);
join
(
exec_prefix
,
"Modules/Setup"
);
join
path
(
exec_prefix
,
"Modules/Setup"
);
if
(
exists
(
exec_prefix
))
{
reduce
(
exec_prefix
);
return
-
1
;
...
...
@@ -290,8 +290,8 @@ search_for_exec_prefix(argv0_path, home)
strcpy
(
exec_prefix
,
delim
+
1
);
else
strcpy
(
exec_prefix
,
home
);
join
(
exec_prefix
,
lib_python
);
join
(
exec_prefix
,
"sharedmodules"
);
join
path
(
exec_prefix
,
lib_python
);
join
path
(
exec_prefix
,
"sharedmodules"
);
if
(
exists
(
exec_prefix
))
return
1
;
}
...
...
@@ -300,8 +300,8 @@ search_for_exec_prefix(argv0_path, home)
strcpy
(
exec_prefix
,
argv0_path
);
do
{
n
=
strlen
(
exec_prefix
);
join
(
exec_prefix
,
lib_python
);
join
(
exec_prefix
,
"sharedmodules"
);
join
path
(
exec_prefix
,
lib_python
);
join
path
(
exec_prefix
,
"sharedmodules"
);
if
(
exists
(
exec_prefix
))
return
1
;
exec_prefix
[
n
]
=
'\0'
;
...
...
@@ -310,8 +310,8 @@ search_for_exec_prefix(argv0_path, home)
/* Look at configure's EXEC_PREFIX */
strcpy
(
exec_prefix
,
EXEC_PREFIX
);
join
(
exec_prefix
,
lib_python
);
join
(
exec_prefix
,
"sharedmodules"
);
join
path
(
exec_prefix
,
lib_python
);
join
path
(
exec_prefix
,
"sharedmodules"
);
if
(
exists
(
exec_prefix
))
return
1
;
...
...
@@ -361,7 +361,7 @@ calculate_path()
else
strcpy
(
progpath
,
path
);
join
(
progpath
,
prog
);
join
path
(
progpath
,
prog
);
if
(
exists
(
progpath
))
break
;
...
...
@@ -389,7 +389,7 @@ calculate_path()
else
{
/* Interpret relative to progpath */
reduce
(
argv0_path
);
join
(
argv0_path
,
tmpbuffer
);
join
path
(
argv0_path
,
tmpbuffer
);
}
}
}
...
...
@@ -401,7 +401,7 @@ calculate_path()
fprintf
(
stderr
,
"Could not find platform independent libraries <prefix>
\n
"
);
strcpy
(
prefix
,
PREFIX
);
join
(
prefix
,
lib_python
);
join
path
(
prefix
,
lib_python
);
}
else
reduce
(
prefix
);
...
...
@@ -410,7 +410,7 @@ calculate_path()
fprintf
(
stderr
,
"Could not find platform dependent libraries <exec_prefix>
\n
"
);
strcpy
(
exec_prefix
,
EXEC_PREFIX
);
join
(
exec_prefix
,
"lib/sharedmodules"
);
join
path
(
exec_prefix
,
"lib/sharedmodules"
);
}
/* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
...
...
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