summaryrefslogtreecommitdiff
path: root/src/ftgl/config.h
blob: 109a1aec2c0b1152e42be3b23991e0e2187bcdf7 (plain)
1
2
3
4
5
6
7
8
9
10
// GLUT
//#define HAVE_GL_GLUT_H

// M_PI and friends on VC
#define _USE_MATH_DEFINES

// quell spurious "'this': used in base member initializer list" warnings
#ifdef _MSC_VER
#pragma warning(disable: 4355)
#endif