2009-09-10 06:14:28 +02:00
|
|
|
#ifndef AGI_PRE
|
2009-09-10 04:42:06 +02:00
|
|
|
|
2009-01-04 07:42:49 +01:00
|
|
|
#ifdef _WIN32
|
2009-01-04 07:31:48 +01:00
|
|
|
|
2010-12-11 19:27:28 +01:00
|
|
|
// Define min and max macros to identity.
|
|
|
|
// This will prevent WinDef.h defining them to functions, which prevents
|
|
|
|
// using std::min and std::max.
|
|
|
|
#define min min
|
|
|
|
#define max max
|
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
// Windows specific settings
|
2011-01-19 07:40:23 +01:00
|
|
|
#ifndef BUILD_SKIP_CONFIG_WINDOWS_H
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config/config_windows.h"
|
2011-01-19 07:40:23 +01:00
|
|
|
#endif
|
2009-01-04 07:31:48 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// Generated by configure.in
|
|
|
|
#include "../acconf.h"
|
|
|
|
|
|
|
|
// Unix specific settings and defines.
|
|
|
|
#include "config/config_unix.h"
|
|
|
|
|
|
|
|
#endif // __WINDOWS__
|
2009-07-29 07:43:02 +02:00
|
|
|
|
2009-09-10 06:14:28 +02:00
|
|
|
#endif // AGI_PRE
|