summaryrefslogtreecommitdiff
path: root/src/include/version.h.in
Commit message (Collapse)AuthorAgeFilesLines
* Brand 7.0.3.Bruce Momjian2000-11-031-2/+2
|
* Update for 7.0.2.Bruce Momjian2000-06-051-2/+2
|
* Fixups for 7.0.1Bruce Momjian2000-06-011-2/+2
|
* Update version for 7.0.Bruce Momjian1999-11-011-3/+3
|
* Update for 6.6.Bruce Momjian1999-07-181-3/+3
|
* Update stuff for 6.5.1 release.Bruce Momjian1999-07-101-2/+2
|
* Optimizer rename.Bruce Momjian1999-02-141-3/+3
|
* Fix for version, update to 6.5.Bruce Momjian1998-12-251-3/+3
|
* My mailer munged the intro text in my last post. Here is the textBruce Momjian1998-07-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in a more readable form. -- I am submitting the following patches to the June 6, 1998 snapshot of PostgreSQL. These patches implement a port of PostgreSQL to SCO UnixWare 7, and updates the Univel port (UnixWare 2.x). The patched files, and the reason for the patch are: File Reason for the patch --------------- --------------------------------------------------------------- src/backend/port/dynloader/unixware.c src/backend/port/dynloader/unixware.h src/include/port/unixware.h src/makefiles/Makefile.unixware src/template/unixware Created for the UNIXWARE port. src/include/port/univel.h Modifed this file to work with the changes made to s_lock.[ch]. src/backend/storage/buffer/s_lock.c src/include/storage/s_lock.h Moved the UNIXWARE (and Univel) tas() function from s_lock.c to s_lock.h. The UnixWare compiler asm construct is treated as a macro and needs to be in the s_lock.h file. I also reworked the tas() function to correct some errors in the code. src/include/version.h.in The use of the ## operator with quoted strings in the VERSION macro caused problems with the UnixWare C compiler. I removed the ## operators since they were not needed in this case. The macro expands into a sequence of quoted strings that will be concatenated by any ANSI C compiler. src/config.guess This script was modified to recognize SCO UnixWare 7. src/configure src/configure.in The configure script was modified to recognize SCO UnixWare 7. Billy G. Allie
* Now 6.4.Bruce Momjian1998-06-091-3/+3
|
* From: Jeroen van Vianen <jeroenv@design.nl>Marc G. Fournier1998-04-291-0/+25
Attached patch will add a version() function to Postges, e.g. template1=> select version(); version ------------------------------------------------------------ PostgreSQL 6.3.2 on i586-pc-linux-gnu, compiled by gcc 2.8.1 (1 row)