Subject: Re: Postgresql-server compile failes on mac68k
To: =?ISO-8859-1?Q?R=E9mi_Zara?= <remi_zara@mac.com>
From: Frederick Bruckman <fredb@immanent.net>
List: tech-pkg
Date: 09/27/2003 13:10:18
On Sat, 27 Sep 2003, R=E9mi Zara wrote:

> The problem was that with ELF, there are no more '_' before symbol
> names.
> So here is the patch to make postgresql-server compile on mac68k:
>
> But this patch is a hack, since it should handle all different m68k
> plateforms.

So... instead of simply eliding the underscore ("_"), use the
_C_LABEL() macro defined in <machine/asm.h>. E.g., _C_LABEL(tas) will
automagically become "_tas" or "tas" for a.out or ELF, respectively.

Frederick