Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a7f0747

Browse files
committed
Adds DLLIMPORT modifier to check_function_bodies
Claudio Natoli
1 parent 08c0aa7 commit a7f0747

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/utils/misc/guc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.190 2004/03/15 15:56:24 momjian Exp $
13+
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.191 2004/03/22 03:15:29 momjian Exp $
1414
*
1515
*--------------------------------------------------------------------
1616
*/
@@ -66,7 +66,7 @@
6666
/* XXX these should appear in other modules' header files */
6767
extern bool Log_connections;
6868
extern bool Log_disconnections;
69-
extern bool check_function_bodies;
69+
extern DLLIMPORT bool check_function_bodies;
7070
extern int PreAuthDelay;
7171
extern int AuthenticationTimeout;
7272
extern int CheckPointTimeout;

src/pl/plpgsql/src/pl_handler.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* procedural language
44
*
55
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.20 2004/03/19 18:58:07 tgl Exp $
6+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.21 2004/03/22 03:15:33 momjian Exp $
77
*
88
* This software is copyrighted by Jan Wieck - Hamburg.
99
*
@@ -45,7 +45,7 @@
4545
#include "utils/lsyscache.h"
4646
#include "utils/syscache.h"
4747

48-
extern bool check_function_bodies;
48+
extern DLLIMPORT bool check_function_bodies;
4949

5050
static int plpgsql_firstcall = 1;
5151

0 commit comments

Comments
 (0)