Re: [PATCHES] Fix oldstyle_length regression test for netbsd-mac68k

2004-12-26 Thread Bruce Momjian
Thanks. Tom has applied this fix. --- Rémi Zara wrote: > > Hi, > > NetBSD mac68k's gcc does not define __mc68000__, but __m68k__ > The following patch makes the oldstyle_length test pass on this platform > The change in m

Re: [PATCHES] Fix oldstyle_length regression test for netbsd-mac68k

2004-12-26 Thread Tom Lane
=?ISO-8859-1?Q?R=E9mi_Zara?= <[EMAIL PROTECTED]> writes: > NetBSD mac68k's gcc does not define __mc68000__, but __m68k__ > The following patch makes the oldstyle_length test pass on this platform Applied, thanks. > The change in miscinit is not necessary but for consistency sake Actually I think

[PATCHES] Fix oldstyle_length regression test for netbsd-mac68k

2004-12-26 Thread Rémi Zara
Hi, NetBSD mac68k's gcc does not define __mc68000__, but __m68k__ The following patch makes the oldstyle_length test pass on this platform The change in miscinit is not necessary but for consistency sake (the return value of the func is not read). Index: src/backend/utils/fmgr/fmgr.c ===