bug-gnu-chess
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnu chess, what you did?


From: Federico Schwindt
Subject: gnu chess, what you did?
Date: Mon, 6 Aug 2001 07:29:51 -0300
User-agent: Mutt/1.2.5i

  i'm rather than disappointed with the current version of gnuchess, or
we should say chess, 5.02.
  you took a very nice piece of software and converted it in this windows
oriented crap. not nice at all. i'm afraid to test xboard with this version.
  by instance, the manpage were removed, doing make install does
"cp gnuchess.exe /cygdrive/c/winboard/gnuchess.exe" and stuff like that.
  not even to mention that it's impossible to have an installation without
depending of autoconf, or having to create the book at hand, which by the way
the INSTALL file is wrong, because it's book add book.pgn.
  i'm really unhappy.  are you planning to fix this?
  what's the problem in including the configure script? i don't see it, and
i've been developing software for quite a long time.
  anyway, here's a diff to fix compilation on OpenBSD (and prolly
some other platforms that use __i386__ rather than i386, which you should
check in configure).

  f.-

--- src/util.c.orig     Sat Mar 24 10:28:42 2001
+++ src/util.c  Fri Aug  3 14:45:22 2001
@@ -48,7 +48,7 @@ inline short leadz (BitBoard b)
    } a;
 
    a.bitboard = b;
-#ifdef i386
+#if defined(i386) || defined(__i386__)
    if (a.v[3] != 0)
       return (lzArray[a.v[3]]);
    if (a.v[2] != 0)
  



reply via email to

[Prev in Thread] Current Thread [Next in Thread]