Re: [BUGS] BUG #3516: Incomplete #ifdef statement in s_lock.h

2007-08-06 Thread Tom Lane
Dirk Tilger <[EMAIL PROTECTED]> writes: > FYI: we also apply the attached patch to postgre, so that the > 'configure' script would not add the -mp1, when -mp was already > specified. From the manual: There is absolutely no chance that we will accept this patch, as it is known to break Postgres.

Re: [BUGS] BUG #3516: Incomplete #ifdef statement in s_lock.h

2007-08-06 Thread Dirk Tilger
On Sun, Aug 05, 2007 at 11:20:18AM -0400, Tom Lane wrote: > "Dirk Tilger" <[EMAIL PROTECTED]> writes: > > Operating system: Linux with Intel compiler on ia64 > > > I have been compiling postgresql 8.0, 8.1 and 8.2.4 with the Intel compiler > > in the past successfully. This time something went w

Re: [BUGS] BUG #3516: Incomplete #ifdef statement in s_lock.h

2007-08-05 Thread Tom Lane
"Dirk Tilger" <[EMAIL PROTECTED]> writes: > Operating system: Linux with Intel compiler on ia64 > I have been compiling postgresql 8.0, 8.1 and 8.2.4 with the Intel compiler > in the past successfully. This time something went wrong and although I > can't tell precisely how I triggered it, I hav

Re: [BUGS] BUG #3516: Incomplete #ifdef statement in s_lock.h

2007-08-05 Thread Tom Lane
"Dirk Tilger" <[EMAIL PROTECTED]> writes: > I was able to fix the problem by changing line 81 of s_lock.h to: > | #if defined(__GNUC__) || defined(__INTEL_COMPILER) || defined(__ICC) Hm. Some googling suggests that we should be using only __INTEL_COMPILER, not both. configure.in does it that way

[BUGS] BUG #3516: Incomplete #ifdef statement in s_lock.h

2007-08-05 Thread Dirk Tilger
The following bug has been logged online: Bug reference: 3516 Logged by: Dirk Tilger Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: Linux with Intel compiler on ia64 Description:Incomplete #ifdef statement in s_lock.h Details: I have be