Ok,<br><br>so some good news, its not a dependency related problem.<br><br>skip this if you&#39;re not technical<br>---------8&lt;--------------------------------------<br>When programming perl you can code in a &quot;strict&quot; manner which means all variables must be defined with a scoping statement (&quot;my&quot;).
<br><br>when i program in perl, i use the strict method of programming as it leads to tighter and cleaner code that is easier to troubleshoot. <br><br>the error that you have indicates the variable &quot;@tokens&quot; has not been pre-declared.
<br>---------8&lt;--------------------------------------<br><br>so, if you go to line 127 and change the line &quot;my ($tag, $synopsis);&quot; to &quot;my ($tag, $synopsis, @tokens);&quot; it will work for you.<br><br>i&#39;ve attached a new release with the fix.
<br><br>HTH<br>Ryszard<br><br><div><span class="gmail_quote">On 19/01/07, <b class="gmail_sendername">Bilge Tutak</b> &lt;<a href="mailto:bilge.tutak@gmail.com">bilge.tutak@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>When I run the ./vidupdate I get this error.<br>&quot;Global symbol &quot;@tokens&quot; requires explicit package name at<br>Mythtv/TVcom.pm line 133.&quot;<br><br>Any idea what this is? I am pretty sure I have all the necessary packages.
<br><br>Thank you.<br><br>Bilge.<br><br>On 1/18/07, Ryszard &lt;<a href="mailto:ryszard99@gmail.com">ryszard99@gmail.com</a>&gt; wrote:<br>&gt; for those interested, i&#39;ve fixed the problem with the parser not getting the
<br>&gt; synopsis where a show as the &quot;Watch Video&quot; link next to it (at least for the<br>&gt; shows i&#39;m testing with).<br>&gt;<br>&gt; suggestions/comments welcome,<br>&gt;<br>&gt; regs<br>&gt; Ryszard.<br>&gt;
<br>&gt; _______________________________________________<br>&gt; mythtv-users mailing list<br>&gt; <a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>&gt; <a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>_______________________________________________<br>mythtv-users mailing list<br><a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org
</a><br><a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br></blockquote></div><br>