Skip to content
Snippets Groups Projects
Commit e5722465 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Suppress use of timezone library by ecpg.

parent 85b7e835
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/c.h,v 1.161 2004/04/30 04:14:05 momjian Exp $ * $PostgreSQL: pgsql/src/include/c.h,v 1.162 2004/04/30 20:47:33 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -310,7 +310,7 @@ typedef unsigned long int uint64; ...@@ -310,7 +310,7 @@ typedef unsigned long int uint64;
#endif #endif
/* Global variable holding time zone information. */ /* Global variable holding time zone information. */
#ifdef USE_PGTZ #if defined(USE_PGTZ) && !defined(FRONTEND)
#define TIMEZONE_GLOBAL pg_timezone #define TIMEZONE_GLOBAL pg_timezone
#else #else
#ifndef HAVE_UNDERSCORE_TIMEZONE #ifndef HAVE_UNDERSCORE_TIMEZONE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment