mirror of https://github.com/postgres/postgres
Fix for version, update to 6.5.
This commit is contained in:
parent
85e3bf1555
commit
a2aae54222
|
@ -51,6 +51,7 @@
|
|||
/* IRIX doesn't do 'long long' in va_arg(), so use a typedef */
|
||||
#ifdef HAVE_LONG_LONG_INT_64
|
||||
typedef long long long_long;
|
||||
typedef unsigned long long ulong_long;
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -75,7 +76,7 @@ typedef long long long_long;
|
|||
* causing nast effects.
|
||||
**************************************************************/
|
||||
|
||||
/*static char _id[] = "$Id: snprintf.c,v 1.10.2.2 1998/12/18 07:03:29 momjian Exp $";*/
|
||||
/*static char _id[] = "$Id: snprintf.c,v 1.10.2.3 1998/12/25 02:20:41 momjian Exp $";*/
|
||||
static char *end;
|
||||
static int SnprfOverflow;
|
||||
|
||||
|
@ -363,7 +364,7 @@ int base,
|
|||
{
|
||||
int signvalue = 0;
|
||||
#ifdef HAVE_LONG_LONG_INT_64
|
||||
unsigned long long uvalue;
|
||||
ulong_long uvalue;
|
||||
#else
|
||||
unsigned long uvalue;
|
||||
#endif
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* this file contains the interface to version.c.
|
||||
* Also some parameters.
|
||||
*
|
||||
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.3 1998/07/19 04:16:53 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.3.2.1 1998/12/25 02:20:41 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
@ -16,7 +16,7 @@ void SetPgVersion(const char *path, char **reason_p);
|
|||
|
||||
#define PG_RELEASE "6"
|
||||
#define PG_VERSION "4"
|
||||
#define PG_SUBVERSION "0"
|
||||
#define PG_SUBVERSION "1"
|
||||
|
||||
#define PG_VERFILE "PG_VERSION"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ register.txt
|
|||
doc/Machine-specific FAQ's
|
||||
doc/TODO
|
||||
doc/bug.template
|
||||
update include/version.h after release
|
||||
update include/version.h.in after release
|
||||
update backend/parser/scan.c and gram.c so flex/bison not necessary
|
||||
update pgaccess
|
||||
update odbc
|
||||
|
|
Loading…
Reference in New Issue