diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-01 23:12:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-01 23:12:16 +0000 |
commit | 5ef01a28e6c6ce25dffbaa4025293c0dceb80c81 (patch) | |
tree | e24dff0cc84f5acacda1b09cc8478f089218a68d /src | |
parent | ffb087ced5df5ca1252513935ccdb50736d56244 (diff) | |
download | postgresql-5ef01a28e6c6ce25dffbaa4025293c0dceb80c81.tar.gz postgresql-5ef01a28e6c6ce25dffbaa4025293c0dceb80c81.zip |
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
Diffstat (limited to 'src')
-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 c784f28afdc..fa1e8b6c08b 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 * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.231 2003/12/01 21:52:38 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.232 2003/12/01 23:12:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -237,7 +237,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); |