mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Don't use __declspec (dllimport) for PGDLLEXPORT to reduce warnings
by gcc version 4 on mingw and cygwin. We don't use dllexport here because dllexport and dllwrap don't work well together.
This commit is contained in:
parent
b47953f9c6
commit
844ed5dc97
@ -19,4 +19,4 @@
|
||||
#define PGDLLIMPORT __declspec (dllimport)
|
||||
#endif
|
||||
|
||||
#define PGDLLEXPORT __declspec (dllimport)
|
||||
#define PGDLLEXPORT
|
||||
|
@ -61,7 +61,7 @@
|
||||
#ifdef _MSC_VER
|
||||
#define PGDLLEXPORT __declspec (dllexport)
|
||||
#else
|
||||
#define PGDLLEXPORT __declspec (dllimport)
|
||||
#define PGDLLEXPORT
|
||||
#endif
|
||||
#else /* not CYGWIN, not MSVC, not MingW */
|
||||
#define PGDLLIMPORT
|
||||
|
Loading…
Reference in New Issue
Block a user