<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Andrew Fenn wrote:
<blockquote
 cite="midb594ca9d0807030105m40bfb110u42ae54c4c7cca3a3@mail.gmail.com"
 type="cite">I am having this problem too, any solutions on how to get
it compiling? I'm using Ubuntu with enet from cvs.<br>
  <br>
andrew@blackbox:~/Desktop/hardwar/trunk$ make<br>
g++ -c -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wcomment
-Wcast-align -Wno-deprecated -fvisibility=hidden
-fvisibility-inlines-hidden -g -O -pthread -pipe -DFX -D_GNU_SOURCE
-DINVERSEXY `pkg-config OGRE --cflags` `pkg-config CEGUI-OGRE --cflags`
`pkg-config CEGUI --cflags` `pkg-config OIS --cflags`  -I./include
-I./usr/include/boost/ -I/usr/local/include/enet/ src/GUIManager.cpp -o
src/GUIManager.o<br>
In file included from src/GUIManager.cpp:17:<br>
./include/GUIManager.h:24: warning: ignoring #pragma warning <br>
./include/GUIManager.h:25: warning: ignoring #pragma warning <br>
In file included from src/GUIManager.cpp:17:<br>
./include/GUIManager.h:38: warning: ignoring #pragma warning <br>
In file included from /usr/include/c++/4.2/cwchar:52,<br>
                 from /usr/include/c++/4.2/bits/postypes.h:46,<br>
                 from /usr/include/c++/4.2/iosfwd:49,<br>
                 from /usr/include/c++/4.2/bits/stl_algobase.h:70,<br>
                 from /usr/include/c++/4.2/bits/char_traits.h:46,<br>
                 from /usr/include/c++/4.2/string:47,<br>
                 from /usr/local/include/CEGUI/CEGUIBase.h:87,<br>
                 from /usr/local/include/CEGUI/CEGUI.h:34,<br>
                 from ./include/GUIManager.h:33,<br>
                 from src/GUIManager.cpp:17:<br>
/usr/include/c++/4.2/ctime:66: error: '::clock_t' has not been declared<br>
/usr/include/c++/4.2/ctime:67: error: '::time_t' has not been declared<br>
/usr/include/c++/4.2/ctime:68: error: '::tm' has not been declared<br>
/usr/include/c++/4.2/ctime:70: error: '::clock' has not been declared<br>
/usr/include/c++/4.2/ctime:71: error: '::difftime' has not been declared<br>
/usr/include/c++/4.2/ctime:72: error: '::mktime' has not been declared<br>
/usr/include/c++/4.2/ctime:73: error: '::time' has not been declared<br>
/usr/include/c++/4.2/ctime:74: error: '::asctime' has not been declared<br>
/usr/include/c++/4.2/ctime:75: error: '::ctime' has not been declared<br>
/usr/include/c++/4.2/ctime:76: error: '::gmtime' has not been declared<br>
/usr/include/c++/4.2/ctime:77: error: '::localtime' has not been
declared<br>
/usr/include/c++/4.2/ctime:78: error: '::strftime' has not been declared<br>
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
ENet-discuss mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ENet-discuss@cubik.org">ENet-discuss@cubik.org</a>
<a class="moz-txt-link-freetext" href="http://lists.cubik.org/mailman/listinfo/enet-discuss">http://lists.cubik.org/mailman/listinfo/enet-discuss</a>
  </pre>
</blockquote>
Me  think you got a cstd include missing somehow.give this a try: <br>
#include&lt;cstd&gt;<br>
using namespace cstd;<br>
<br>
good luck mate!<br>
</body>
</html>