Update of /cvsroot/simspark/simspark/spark/kerosin/imageserver
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26628
Modified Files:
imageserver.cpp
Log Message:
- moved declaration of global fileserver outside the conditional
compilation (as the file server is needed in all cases).
Index: imageserver.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/kerosin/imageserver/imageserver.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** imageserver.cpp 8 Mar 2006 09:18:56 -0000 1.2
--- imageserver.cpp 8 Mar 2006 16:52:57 -0000 1.3
***************
*** 33,41 ****
using namespace std;
#if HAVE_IL_IL_H
//-----------------------------------------------------------------------------
// FileServer hooks for DevIL
//-----------------------------------------------------------------------------
- shared_ptr<FileServer> gFileServer;
ILHANDLE
--- 33,42 ----
using namespace std;
+ shared_ptr<FileServer> gFileServer;
+
#if HAVE_IL_IL_H
//-----------------------------------------------------------------------------
// FileServer hooks for DevIL
//-----------------------------------------------------------------------------
ILHANDLE
|