ItayGal2 / sage-graphics

Automatically exported from code.google.com/p/sage-graphics
0 stars 1 forks source link

Compilation fails due to error in sageDisplayManager.cpp:304 #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. download an svn version (2010-03-13)
2. attempt to compile

What is the expected output? What do you see instead?
Make ok, make fails

What version of the product are you using? On what operating system?
Any GNU/Linux

Please provide any additional information below.
sageDisplayManager.cpp (lines 303..304)
   //shared->context = (displayContext *) new sdlSingleContext;
   shared->context = (displayContext *) new appleMultiContext;
should be replaced with
#if defined(__APPLE__)
   shared->context = (displayContext *) new appleMultiContext;
#else
   shared->context = (displayContext *) new sdlSingleContext;
#endif

Original issue reported on code.google.com by lukassof...@gmail.com on 13 Mar 2010 at 5:18

GoogleCodeExporter commented 9 years ago
Fixed.

Original comment by renam...@gmail.com on 26 Mar 2010 at 4:22