From 90863fd0613cfc0c06c8be635824c4b2f8b1323b Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Tue, 8 Mar 2011 00:08:18 +0100 Subject: [PATCH 1/2] * disabled app/gprop temporary because of the incompatibility with gcc version higher than 4.5.1 --- eo/app/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/app/CMakeLists.txt b/eo/app/CMakeLists.txt index b57cce22..d13aac52 100644 --- a/eo/app/CMakeLists.txt +++ b/eo/app/CMakeLists.txt @@ -2,7 +2,7 @@ ### 1) Where must cmake go now ? ###################################################################################### -ADD_SUBDIRECTORY(gprop) +#ADD_SUBDIRECTORY(gprop) #ADD_SUBDIRECTORY(gpsymreg) ADD_SUBDIRECTORY(mastermind) ###################################################################################### From 8f6e4b253d52d2cfc31e2a82b2da5a2f7f5ca2c7 Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Mon, 14 Mar 2011 17:29:20 +0100 Subject: [PATCH 2/2] * pipecom: added an argument to printf generating a warning --- eo/src/utils/pipecom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/pipecom.cpp b/eo/src/utils/pipecom.cpp index d11989ec..46ad5489 100644 --- a/eo/src/utils/pipecom.cpp +++ b/eo/src/utils/pipecom.cpp @@ -109,7 +109,7 @@ int PipeComSend( PCom *to, const char *line ) int nb = 0; if( ! Check(to ) ) return nb; - nb = fprintf( to->fWrit, line ); + nb = fprintf( to->fWrit, line, 0 ); fflush( to->fWrit ); return nb; }