<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Oct 2, 2014 at 6:34 PM, Jonas Maebe <span dir="ltr"><<a href="mailto:jonas.maebe@elis.ugent.be" target="_blank">jonas.maebe@elis.ugent.be</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">On 02/10/14 23:23, silvioprog wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
On Thu, Oct 2, 2014 at 6:13 PM, Jonas Maebe <<a href="mailto:jonas.maebe@elis.ugent.be" target="_blank">jonas.maebe@elis.ugent.be</a><br>
<mailto:<a href="mailto:jonas.maebe@elis.ugent.be" target="_blank">jonas.maebe@elis.<u></u>ugent.be</a>>> wrote:<br>
<br>
    "Note that this switch does not propagate to other units, i.e. it’s<br>
    scope is limited to the current unit."<br>
<br>
    "unit" should be interpreted as "compilation unit" in this context.<br>
<br>
Correct. But it does not work fine if the path contains two or more<br>
units. E.g:<br>
<br>
{$unitpath path\to\the\all\units\of\the\<u></u>synapse40\source\lib}<br>
<br>
"..\..\3rdparty\synapse40\<u></u>source\lib\httpsend.pas(72,3) Fatal: Can't<br>
find unit blcksock used by httpsend."<br>
</blockquote>
<br>
That's because httpsend is a different unit than the one that included the {$unitpath ...} directive. Once you are inside the httpsend unit, the directive is no longer valid, as the documentation explains. And hence, other units in that same directory won't be found.<br>
<br>
I understand that this may be counter-intuitive, but it's how the feature was designed and how it is documented. I think the directive is completely local to a single compilation unit because, presumably, it was originally intended to allow for having units in "packages" to contain their own unitpath directives without polluting the unit search path of the main program.<br>
<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
I tried too {$unitpath path\to\the\all\units\of\the\<u></u>synapse40\source\lib\*}:<br>
<br>
"Can not find unit httpsend used by myunit."<br>
</blockquote>
<br>
Of course that won't work: it will add all directories under "...\synapse40\source\lib" to the unit search path, but not "...\synapse40\source\lib" itself (which is where your httpsend unit is located).<br><br>
Jonas</blockquote></div><div><br></div><div>Hm... now it is clear to me. Thanks!</div><div><br></div><div>But it would be an nice feature in Free Pascal, something like the "import" of Python and Java. =)<br></div><div><br></div>-- <br>Silvio Clécio<br>My public projects - <a href="http://github.com/silvioprog" target="_blank">github.com/silvioprog</a>
</div></div>