Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
b393cad4
Commit
b393cad4
authored
28 years ago
by
Fredrik Hübinette (Hubbe)
Browse files
Options
Downloads
Patches
Plain Diff
fix for --without-dynamic-modules
Rev: lib/master.pike:1.30 Rev: src/configure.in:1.57
parent
a2a9089e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/master.pike
+29
-25
29 additions, 25 deletions
lib/master.pike
src/configure.in
+1
-21
1 addition, 21 deletions
src/configure.in
with
30 additions
and
46 deletions
lib/master.pike
+
29
−
25
View file @
b393cad4
...
...
@@ -208,8 +208,13 @@ class dirnode
object|program `[](string index)
{
index=dirname+"/"+index;
return
((object)"/master")->findmodule(index) || (program) index;
if(object o=((object)"/master")->findmodule(index))
{
if(mixed tmp=o->_module_value)
return tmp;
return o;
}
return (program) index;
}
};
...
...
@@ -225,7 +230,7 @@ class mergenode
}
};
object
low_
findmodule(string fullname)
object findmodule(string fullname)
{
mixed *stat;
program p;
...
...
@@ -249,25 +254,13 @@ object low_findmodule(string fullname)
if(mixed *stat=file_stat(fullname))
{
if(stat[1]==-2)
return
low_
findmodule(fullname+"/module");
return findmodule(fullname+"/module");
}
#endif
return UNDEFINED;
}
mixed findmodule(string path)
{
if(object o=low_findmodule(path))
{
if(mixed tmp=o->_module_value)
{
return tmp;
}
}
return o;
}
varargs mixed resolv(string identifier, string current_file)
{
mixed ret;
...
...
@@ -278,19 +271,30 @@ varargs mixed resolv(string identifier, string current_file)
tmp=current_file/"/";
tmp[-1]=identifier;
path=combine_path(getcwd(), tmp*"/");
if(
ret=findmodule(path)
) return ret
;
ret=findmodule(path);
}
foreach(pike_module_path, path)
{
path=combine_path(path,identifier);
if(ret=findmodule(path)) return ret;
}
if(!ret)
{
foreach(pike_module_path, path)
{
path=combine_path(path,identifier);
if(ret=findmodule(path)) break;
}
}
string path=combine_path(pike_library_path+"/modules",identifier);
if(ret=findmodule(path)) return ret;
if(!ret)
{
string path=combine_path(pike_library_path+"/modules",identifier);
if(!(ret=findmodule(path)))
ret=_static_modules[identifier];
}
if(ret=_static_modules[identifier]) return ret;
if(ret)
{
if(mixed tmp=ret->_module_value) return tmp;
return ret;
}
return UNDEFINED;
}
...
...
This diff is collapsed.
Click to expand it.
src/configure.in
+
1
−
21
View file @
b393cad4
AC_REVISION("$Id: configure.in,v 1.5
6
1997/02/0
7
00:
5
4:
36
hubbe Exp $")
AC_REVISION("$Id: configure.in,v 1.5
7
1997/02/
2
0 00:
0
4:
59
hubbe Exp $")
AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h)
...
...
@@ -427,26 +427,6 @@ if test "${pike_cv_sys_os}" = "Linux"; then
AC_MSG_WARN(I will compensate for this by adding -lc -lm)
LIBS="${LIBS} -lc -lm"
fi
#if 0
if test $ldflags_is_set ; then
AC_MSG_CHECKING(for -rdynamic)
AC_CACHE_VAL(pike_cv_ld_accepts_rdynamic,
[
OLD_LDFLAGS="$LDFLAGS"
LDFLAGS="$LFFLAGS -rdynamic"
AC_TRY_LINK([],[ exit(0); ],[
pike_cv_ld_accepts_rdynamic=yes
],[ pike_cv_ld_accepts_rdynamic=no ])
LDFLAGS="$OLD_LDFLAGS"
])
AC_MSG_RESULT($pike_cv_ld_accepts_rdynamic)
if test x$pike_cv_ld_accepts_rdynamic = xyes ; then
LDFLAGS="$LDFLAGS -rdynamic"
fi
fi
#endif
fi
########################################################################
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment