Fix erors when compiling with --disable-zippy
authorH.G. Muller <h.g.muller@hccnet.nl>
Wed, 4 Aug 2010 09:00:28 +0000 (11:00 +0200)
committerArun Persaud <arun@nubati.net>
Thu, 5 Aug 2010 06:51:28 +0000 (23:51 -0700)
The file args.h contained a codeblock in #ifdef ZIPPY, in stead of
fields.

args.h
backend.c
winboard/winboard.c
xboard.c

diff --git a/args.h b/args.h
index fb812ba..04f2c23 100644 (file)
--- a/args.h
+++ b/args.h
@@ -585,7 +585,7 @@ ArgDescriptor argDescriptors[] = {
   { "forceIllegalMoves", ArgTrue, (void *) &appData.forceIllegal, FALSE, INVALID },
   { "showTargetSquares", ArgBoolean, (void *) &appData.markers, TRUE, FALSE },
 
-#ifdef ZIPPY
+#if ZIPPY
   { "zippyTalk", ArgBoolean, (void *) &appData.zippyTalk, FALSE, (ArgIniType) ZIPPY_TALK },
   { "zt", ArgTrue, (void *) &appData.zippyTalk, FALSE, INVALID },
   { "xzt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
index 1c25faa..b1da687 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -4523,7 +4523,7 @@ SendMoveToProgram(moveNum, cps)
     /*       Send 'go' if we are in a mode where machine should play. */
     if( (moveNum == 0 && setboardSpoiledMachineBlack && cps == &first) &&
         (gameMode == TwoMachinesPlay   ||
-#ifdef ZIPPY
+#if ZIPPY
          gameMode == IcsPlayingBlack     || gameMode == IcsPlayingWhite ||
 #endif
          gameMode == MachinePlaysBlack || gameMode == MachinePlaysWhite) ) {
index fa310fe..e4e8db9 100644 (file)
@@ -7463,7 +7463,7 @@ Enables icsEnables[] = {
   { -1, -1 }\r
 };\r
 \r
-#ifdef ZIPPY\r
+#if ZIPPY\r
 Enables zippyEnables[] = {\r
   { IDM_MoveNow, MF_BYCOMMAND|MF_ENABLED },\r
   { IDM_Hint, MF_BYCOMMAND|MF_ENABLED },\r
@@ -7674,7 +7674,7 @@ SetICSMode()
   SetMenuEnables(hmenu, icsEnables);\r
   EnableMenuItem(GetSubMenu(hmenu, OPTIONS_POS), ICS_POS,\r
     MF_BYPOSITION|MF_ENABLED);\r
-#ifdef ZIPPY\r
+#if ZIPPY\r
   if (appData.zippyPlay) {\r
     SetMenuEnables(hmenu, zippyEnables);\r
     if (!appData.noChessProgram)     /* [DM] icsEngineAnalyze */\r
index ae13c6f..5e2fb1a 100644 (file)
--- a/xboard.c
+++ b/xboard.c
@@ -2861,7 +2861,7 @@ void SetICSMode()
 {
   SetMenuEnables(icsEnables);
 
-#ifdef ZIPPY
+#if ZIPPY
   if (appData.zippyPlay && !appData.noChessProgram)   /* [DM] icsEngineAnalyze */
      XtSetSensitive(XtNameToWidget(menuBarWidget, "menuMode.Analysis Mode"), True);
 #endif