Repair WinBoard compile error
authorH.G. Muller <h.g.muller@hccnet.nl>
Tue, 26 Feb 2013 15:55:20 +0000 (16:55 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Tue, 26 Feb 2013 16:51:26 +0000 (17:51 +0100)
__GITVERSION was not defined in WinBoard, as it was only defined with a
compiler flag by ./configure, which WinBoard does not use.

backend.c

index a196a9f..d229046 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -1344,7 +1344,11 @@ void
 InitBackEnd2 ()
 {
     if (appData.debugMode) {
+#    ifdef __GIT_VERSION
       fprintf(debugFP, "Version: %s (%s)\n", programVersion, __GIT_VERSION);
+#    else
+      fprintf(debugFP, "Version: %s\n", programVersion);
+#    endif
     }
     ASSIGN(currentDebugFile, appData.nameOfDebugFile); // [HGM] debug split: remember initial name in use