diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-10-26 00:26:13 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-10-26 00:26:13 +0000 |
commit | 1fdbc8cc20f692c832797c5fc39854b230e6676a (patch) | |
tree | 6e8c90e3616053739e42272e20e7420c1725e15d | |
parent | 530f997e6ec407d0f70f8300cd0bca87d130a917 (diff) | |
download | postgresql-1fdbc8cc20f692c832797c5fc39854b230e6676a.tar.gz postgresql-1fdbc8cc20f692c832797c5fc39854b230e6676a.zip |
Update linux/mips port.
Add m68k to linux port.
-rw-r--r-- | doc/src/sgml/installation.sgml | 4 | ||||
-rw-r--r-- | src/include/port/linux.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index f824faf520b..1f628672e04 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.159 2003/10/26 00:22:51 momjian Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.160 2003/10/26 00:26:13 momjian Exp $ --> <chapter id="installation"> <title><![%standalone-include[<productname>PostgreSQL</>]]> @@ -1629,7 +1629,7 @@ gunzip -c postgres.ps.gz \ <entry>7.3</entry> <entry>2003-10-25, No?l K?the (<email>noel@debian.org</email>)</entry> - <entry></entry> + <entry>2.4</entry> </row> <row> <entry><systemitem class="osname">Linux</></entry> diff --git a/src/include/port/linux.h b/src/include/port/linux.h index c7d88e396cd..0453347dac3 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -43,4 +43,9 @@ typedef unsigned int slock_t; #define HAS_TEST_AND_SET +#ifif defined(__m68k__) +typedef unsigned char slock_t; + +#define HAS_TEST_AND_SET + #endif |