version 1.4.61b
authorH.G. Muller <h.g.muller@hccnet.nl>
Thu, 9 Jun 2011 08:17:00 +0000 (10:17 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Thu, 9 Jun 2011 08:17:00 +0000 (10:17 +0200)
ChangeLog
config.h
configure
configure.ac
main.c
polyglot.spec
xboard2uci.c

index 5bb6cb4..9b2b2c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+========1.4.61b=================\r
+- uci_isready replaced by uci_isready_sync. Polyglot should not send commands to the engine while it is syncing.\r
 ========1.4.60b=================\r
 - The result string after an illegal move now shows the actual attempted move.\r
 ========1.4.59b=================\r
index c4512c7..5e50316 100644 (file)
--- a/config.h
+++ b/config.h
 #define PACKAGE_NAME "polyglot"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "polyglot 1.4.60b"
+#define PACKAGE_STRING "polyglot 1.4.61b"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "polyglot"
 #define PACKAGE_URL ""
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.4.60b"
+#define PACKAGE_VERSION "1.4.61b"
 
 /* Define as the return type of signal handlers (`int' or `void'). */
 #define RETSIGTYPE void
 #define TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define VERSION "1.4.60b"
+#define VERSION "1.4.61b"
 
 /* Define to empty if `const' does not conform to ANSI C. */
 /* #undef const */
index 308a3d2..4a88735 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.64 for polyglot 1.4.60b.
+# Generated by GNU Autoconf 2.64 for polyglot 1.4.61b.
 #
 # Report bugs to <michel.vandenbergh@uhasselt.be>.
 #
@@ -549,8 +549,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='polyglot'
 PACKAGE_TARNAME='polyglot'
-PACKAGE_VERSION='1.4.60b'
-PACKAGE_STRING='polyglot 1.4.60b'
+PACKAGE_VERSION='1.4.61b'
+PACKAGE_STRING='polyglot 1.4.61b'
 PACKAGE_BUGREPORT='michel.vandenbergh@uhasselt.be'
 PACKAGE_URL=''
 
@@ -1230,7 +1230,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures polyglot 1.4.60b to adapt to many kinds of systems.
+\`configure' configures polyglot 1.4.61b to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1296,7 +1296,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of polyglot 1.4.60b:";;
+     short | recursive ) echo "Configuration of polyglot 1.4.61b:";;
    esac
   cat <<\_ACEOF
 
@@ -1383,7 +1383,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-polyglot configure 1.4.60b
+polyglot configure 1.4.61b
 generated by GNU Autoconf 2.64
 
 Copyright (C) 2009 Free Software Foundation, Inc.
@@ -1808,7 +1808,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by polyglot $as_me 1.4.60b, which was
+It was created by polyglot $as_me 1.4.61b, which was
 generated by GNU Autoconf 2.64.  Invocation command line was
 
   $ $0 $@
@@ -2616,7 +2616,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='polyglot'
- VERSION='1.4.60b'
+ VERSION='1.4.61b'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -5388,7 +5388,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by polyglot $as_me 1.4.60b, which was
+This file was extended by polyglot $as_me 1.4.61b, which was
 generated by GNU Autoconf 2.64.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -5452,7 +5452,7 @@ Report bugs to <michel.vandenbergh@uhasselt.be>."
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_version="\\
-polyglot config.status 1.4.60b
+polyglot config.status 1.4.61b
 configured by $0, generated by GNU Autoconf 2.64,
   with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
index 7e4fe94..09bc658 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.61)
-AC_INIT([polyglot], [1.4.60b], [michel.vandenbergh@uhasselt.be])
+AC_INIT([polyglot], [1.4.61b], [michel.vandenbergh@uhasselt.be])
 AM_INIT_AUTOMAKE
 AC_CONFIG_SRCDIR([mainloop.c])
 AC_CONFIG_HEADER([config.h])
diff --git a/main.c b/main.c
index 63b957b..5400507 100644 (file)
--- a/main.c
+++ b/main.c
@@ -39,7 +39,7 @@
 // constants\r
 \r
 \r
-static const char * const Version = "1.4.60b";\r
+static const char * const Version = "1.4.61b";\r
 static const char * const HelpMessage = "\\r
 SYNTAX\n\\r
 * polyglot [configfile] [-noini] [-ec engine] [-ed enginedirectory] [-en enginename] [-log true/false] [-lf logfile] [-pg <name>=<value>]* [-uci <name>=<value>]*\n\\r
index a162a11..6deb2e7 100644 (file)
@@ -1,6 +1,6 @@
 Summary: A Winboard protocol to UCI protocol adapter
 Name: polyglot
-Version: 1.4.60b
+Version: 1.4.61b
 Release: 1
 License: GPL
 Group: Amusement/Games
index 1445dfe..80e0a62 100644 (file)
@@ -305,7 +305,7 @@ void xboard2uci_gui_step(char string[]) {
 \r
                } else if (match(string,"new")) {\r
 \r
-            uci_send_isready(Uci);\r
+                   uci_send_isready_sync(Uci);\r
                        my_log("POLYGLOT NEW GAME\n");\r
 \r
                        option_set(Option,"Chess960","false");\r
@@ -356,7 +356,7 @@ void xboard2uci_gui_step(char string[]) {
                        if (DelayPong) {\r
                                if (XB->ping >= 0) gui_send(GUI,"pong %d",XB->ping); // HACK: get rid of old ping\r
                                XB->ping = atoi(Star[0]);\r
-                               uci_send_isready(Uci);\r
+                               uci_send_isready_sync(Uci);\r
                        } else {\r
                                ASSERT(XB->ping==-1);\r
                                gui_send(GUI,"pong %s",Star[0]);\r