@trgse:
Your
ports have a broken anti-MorphOS code.
Your code is:
if (OpenResource("MORPHOS"))
{
printf("fucking pirates!!!\n");
exit(1);
}
...but there is no such resource in MorphOS.
To fix, use the following code:
if (FindResident("MorphOS"))
{
printf("fucking pirates!!!\n");
exit(1);
}
Yes, this is somewhat sarcastic "bugreport" to point out some childish and outright stupid actions by some "amiga developers".
This is not the way:
a) Setting up artificial limits and thus limiting the possible userbase of a program is not very smart.
b) The program you ported is GPL. Anyone can request the source code from you and remove your anti-MOS code.
PS. Also your home page javascript to detect MorphOS:
if (navigator.appVersion.indexOf("Morph") != -1) {document.writeln("MorphOS - Piratez paradize, You are not allowed to run my programs");}
...doesn't work. Fix that too!
Waiting for a bugfix,
- Piru