Hi,
I'm new to this group, and I have been trying to compile the poker-eval dll.
Because I'm using Windows 2000 I have downloaded the newest cygwin version.
Then I have checked out the latest head branch from you cvs repository.
When I then tried to compile your sources I encountered some problems:
The first problem was with the jni_md.h file, that comes with the Java SDK.
The 'jlong' type was defined there as '__int64'. Apparently the gcc compiler
doesn't like that, because it gave me compile errors. When I changed
'__int64' into 'long long' it went ok.
But then I got a compile error in the files evx5 and evx7 in the
include/inlines directory. It's about this little piece of code, that I
found in line 38 until line 48 in evx5; in evx7 a similar piece of code gave
problems:
ranks = clubs | diamonds | hearts | spades;
switch (ranks)
{
| spades;
switch (ranks)
{
The first switch statement does not compile. I tried to comment it out but
it was no use because these files seem to be automatically generated by the
makescript. Does anybody know how I should fix this ?
Thanks in advance,
Misja