/*------------------------------------------------------------------------- * * version.h.in * this file contains the interface to version.c. * Also some parameters. * * $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.6 1999/07/10 16:28:01 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef VERSION_H #define VERSION_H void ValidatePgVersion(const char *path, char **reason_p); void SetPgVersion(const char *path, char **reason_p); #define PG_RELEASE "6" #define PG_VERSION "5" #define PG_SUBVERSION "1" #define PG_VERFILE "PG_VERSION" #define PG_VERSION_STR "PostgreSQL " PG_RELEASE "." PG_VERSION "." PG_SUBVERSION " on @host@, compiled by @CC@ @CC_VERSION@" #endif