Re: [HACKERS] compile error: c_lock assembler

2001-08-29 Thread Peter Eisentraut
Karel Zak writes: > Hmm, I answer it oneself. A problem is in the file > src/backend/storage/buffer/s_lock.c at line 231: > > #if defined(__mips__) || !defined(__sgi) > ^ > > this condition is true for all __mips__ or for *everythig* what is > not __sgi__ (so i386 too)

Re: [HACKERS] compile error: c_lock assembler

2001-08-29 Thread Karel Zak
Hmm, I answer it oneself. A problem is in the file src/backend/storage/buffer/s_lock.c at line 231: #if defined(__mips__) || !defined(__sgi) ^ this condition is true for all __mips__ or for *everythig* what is not __sgi__ (so i386 too). It's the typical 'OR' problem