#ifndef SLONY_I_CONFIG_H #define SLONY_I_CONFIG_H #include #define SLONY_I_VERSION_STRING "2.1.0.b2" #define SLONY_I_VERSION_STRING_DEC 2,1,0,b2 #if PG_VERSION_NUM >= 90000 #define HAVE_GETACTIVESNAPSHOT 1 #define HAVE_TYPCACHE 1 #elif PG_VERSION_NUM >= 80400 #define HAVE_GETACTIVESNAPSHOT 1 #define HAVE_TYPCACHE 1 #elif PG_VERSION_NUM >= 80300 #define HAVE_TYPCACHE 1 #else #error "Postgresql 8.3 or higher is required" #endif #endif /* SLONY_I_CONFIG_H */