pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
1999-10-05
1999-10-05 05:31:36 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
7c11f41e37e9510d36c767adfcb4f0e68f400a24 (
13
lines) (+
11
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
master()->resolv now handles dotted names..
Rev: lib/master.pike.in:1.57
1:
-
/* $Id: master.pike.in,v 1.
56
1999/
09
/
06
11
:
02
:
23
hubbe Exp $
+
/* $Id: master.pike.in,v 1.
57
1999/
10
/
05
05
:
31
:
36
hubbe Exp $
* * Master-file for Pike. *
698:
return fc[path]=dirnode(path); }
-
mixed resolv(string identifier, string|void current_file)
+
mixed resolv
_base
(string identifier, string|void current_file)
{ array(mixed) tmp = ({}); foreach(pike_module_path, string path)
735:
return UNDEFINED; }
+
mixed resolv(string identifier, string|void current_file)
+
{
+
array(string) tmp=identifier/".";
+
mixed ret=resolv_base(tmp[0]);
+
foreach(tmp[1..],string index) ret=ret[index];
+
return ret;
+
}
+
// These are useful if you want to start other Pike processes // with the same options as this one was started with. string _pike_file_name;