diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-02 12:40:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-02 12:40:08 +0000 |
commit | 6fe6e33db66896060573f91cc7ef2c5d66183d71 (patch) | |
tree | 494492210c1adcbd82fb67d9009e03c6c4f4578a | |
parent | e16c318590269c7243c5962241ba304f1931f499 (diff) |
The attached patch enables contrib/cube to build cleanly under Cygwin
(again). Please consider this patch for the 7.4.1 branch (if there
will be one) too.
Jason Tishler
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 71615b6610f..397064db3b9 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.228 2003/08/17 19:58:06 tgl Exp $ + * $Id: builtins.h,v 1.228.2.1 2003/12/02 12:40:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -231,7 +231,7 @@ extern Datum btname_pattern_cmp(PG_FUNCTION_ARGS); extern Datum bttext_pattern_cmp(PG_FUNCTION_ARGS); /* float.c */ -extern int extra_float_digits; +extern DLLIMPORT int extra_float_digits; extern Datum float4in(PG_FUNCTION_ARGS); extern Datum float4out(PG_FUNCTION_ARGS); |