Commit 095a0c83 authored by Bruce Momjian's avatar Bruce Momjian

Fix compile problem for missing LONG_LONG_MIN on BSD/OS.

parent 9279a802
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.6 2003/06/25 11:51:18 meskes Exp $ */ /* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.7 2003/06/26 01:33:23 momjian Exp $ */
#define POSTGRES_ECPG_INTERNAL #define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h" #include "postgres_fe.h"
...@@ -18,6 +18,11 @@ ...@@ -18,6 +18,11 @@
#include "pgtypes_timestamp.h" #include "pgtypes_timestamp.h"
#include "pgtypes_interval.h" #include "pgtypes_interval.h"
#ifndef LONG_LONG_MIN
#define LONG_LONG_MIN LLONG_MIN
#endif
static struct sqlca_t sqlca_init = static struct sqlca_t sqlca_init =
{ {
{ {
......
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