Closed WallyZambotti closed 1 year ago
Line 13 of sg/sg.h
# include <GL/glu.h>
should be changed to
#ifdef __APPLE__ # include <OpenGL/glu.h> #else # include <GL/glu.h> #endif
Otherwise fatal errors are caused when building in MacOS
Fixed in r10939. Thanks!
Line 13 of sg/sg.h
# include <GL/glu.h>
should be changed to
Otherwise fatal errors are caused when building in MacOS