From: | "Vladimir Barzionov" <snego(dot)barsik(at)gmail(dot)com> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #5394: invalid __declspec for PG_MODULE_MAGIC |
Date: | 2010-03-27 14:44:50 |
Message-ID: | 201003271444.o2REioNg054371@wwwmaster.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
The following bug has been logged online:
Bug reference: 5394
Logged by: Vladimir Barzionov
Email address: snego(dot)barsik(at)gmail(dot)com
PostgreSQL version: 8.3.10
Operating system: win32
Description: invalid __declspec for PG_MODULE_MAGIC
Details:
In fmgr.h,
macros PG_MODULE_MAGIC, PG_FUNCTION_INFO_V1.. are declared with incorrect
"storage-class". It uses PGDLLIMPORT for declare __declspec().
In general for building external DLL module, PGDLLIMPORT must be
__declspec(dllimport). As it is.
However in PG_MAGIC_* macro, storage class for function must be
__declspec(dllexport).
Same problem was already discussed for example here
http://dbaspot.com/forums/postgresql/393683-re-general-custom-c-function-pal
loc-broken.html
Looks like the simplest way for correcting the issue is declaring additional
macro (something like PGMODULEEXPORT)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2010-03-28 20:01:57 | Re: BUG #5394: invalid __declspec for PG_MODULE_MAGIC |
Previous Message | tomas | 2010-03-27 10:06:31 | Re: BUG #5392: Query Optimization |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2010-03-27 14:50:21 | Re: join removal |
Previous Message | Robert Haas | 2010-03-27 11:34:30 | Re: changes to documentation build |