Commit a7f07473 authored by Bruce Momjian's avatar Bruce Momjian

Adds DLLIMPORT modifier to check_function_bodies

Claudio Natoli
parent 08c0aa72
......@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.190 2004/03/15 15:56:24 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.191 2004/03/22 03:15:29 momjian Exp $
*
*--------------------------------------------------------------------
*/
......@@ -66,7 +66,7 @@
/* XXX these should appear in other modules' header files */
extern bool Log_connections;
extern bool Log_disconnections;
extern bool check_function_bodies;
extern DLLIMPORT bool check_function_bodies;
extern int PreAuthDelay;
extern int AuthenticationTimeout;
extern int CheckPointTimeout;
......
......@@ -3,7 +3,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.20 2004/03/19 18:58:07 tgl Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.21 2004/03/22 03:15:33 momjian Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
......@@ -45,7 +45,7 @@
#include "utils/lsyscache.h"
#include "utils/syscache.h"
extern bool check_function_bodies;
extern DLLIMPORT bool check_function_bodies;
static int plpgsql_firstcall = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment