05ae13a8ab
* Rename include guard to AGI_PRE. Originally committed to SVN as r3509.
18 lines
270 B
C
18 lines
270 B
C
#ifndef AGI_PRE
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Windows specific settings
|
|
#include "config/config_windows.h"
|
|
|
|
#else
|
|
|
|
// Generated by configure.in
|
|
#include "../acconf.h"
|
|
|
|
// Unix specific settings and defines.
|
|
#include "config/config_unix.h"
|
|
|
|
#endif // __WINDOWS__
|
|
|
|
#endif // AGI_PRE
|