<span style="font-family: courier new,monospace;">I thought I was doing the right thing, but I can&#39;t get there from here.</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">What I&#39;d like to do is &#39;conditional compile&#39;.  ie. define this set of</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">subroutines if something, and a different set if something else.</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">For example:</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">BEGIN {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  if (eval &#39;use AMODULE; 1&quot;) {<br>

    sub mysub1 { print &quot;do something&quot;; }<br>    sub mysub2 { print &quot;something else&quot;; }<br>  } else {<br>    sub mysub1 { print &quot;mysub1() is unsupported&quot;; }<br>    sub mysub2 { print &quot;mysub2() is unsupported&quot;; }<br>

  }<br>}</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Or in otherwords... if the module isn&#39;t found, I&#39;d like to stub out some routines.</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Ideas anyone?</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">TIA</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">Fulko</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;">