libagar
libagar copied to clipboard
SG missing __APPLE__ directive in sg.h
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