<div class="gmail_quote">On Mon, Jun 8, 2009 at 11:23 AM, Maurí­cio <span dir="ltr">&lt;<a href="mailto:briqueabraque@yahoo.com">briqueabraque@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
This comes from an issue in haskell-beginner, although<br>
it have already been touched here. If you use recent<br>
versions of ghc to build a program and try the resulting<br>
binary on an old linux distro, you may get a message<br>
about timer_create receiving the wrong parameters.<br>
</blockquote><div><br>For better or worse, this is something that people should not be trying in the first place, and the problem you report is a representative example of why. Taking code compiled on a new system and trying to run it on an old system will often fail due to API or ABI incompatibilities. Sometimes those failures are easy to see, as in your case; other times, they&#39;ll result in more subtle problems. The timer_create issue is a bit of a red herring. If it wasn&#39;t that, something else would probably break instead.<br>
</div></div><br>