|
From: Oliver O. <fr...@us...> - 2007-03-07 09:39:35
|
Update of /cvsroot/simspark/simspark/spark/zeitgeist/scriptserver In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv2417 Modified Files: Tag: projectx scriptserver.cpp Log Message: comment explaining config.h include Index: scriptserver.cpp =================================================================== RCS file: /cvsroot/simspark/simspark/spark/zeitgeist/scriptserver/scriptserver.cpp,v retrieving revision 1.2.2.4 retrieving revision 1.2.2.4.2.1 diff -C2 -d -r1.2.2.4 -r1.2.2.4.2.1 *** scriptserver.cpp 27 Feb 2007 07:08:06 -0000 1.2.2.4 --- scriptserver.cpp 7 Mar 2007 09:39:30 -0000 1.2.2.4.2.1 *************** *** 33,37 **** #ifdef HAVE_CONFIG_H ! #include <config.h> #endif --- 33,44 ---- #ifdef HAVE_CONFIG_H ! /* The include search path includes config.h of ruby as well. My system shows a strange behavior ! when resolving the search paths: ! using - include <config.h> - *before* the rubywrapper includes the correct file (our config.h) ! using - include <config.h> - *after* the rubywrapper includes the ruby - config.h ! using the same line before *and* after the rubywrapper includes the correct file before the rubywrapper, ! and the wrong one after.... :-( ! */ ! #include "../config.h" #endif |