mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>
Subject: [PATCHES] Patches for compiling 6.1 on Digital Unix 3.2c Attached to this message are the patches I needed to compile 6.1 cleanly under Digital Unix 3.2c with DEC cc. I hope these are the last ones. At least, the number of files needing a patch has decreased noticeably since I sent my previous patches. Nice work :-) One of the patches is a bug fix, but I'm including it here anyway. With these patches applied, the beast seems to work properly. However, I've done only some preliminary tests. More on this later (but hopefully before the April 30 deadline... :-)
This commit is contained in:
src/backend
@ -9,7 +9,7 @@
|
||||
* workings can be found in the book "Software Solutions in C" by
|
||||
* Dale Schumacher, Academic Press, ISBN: 0-12-632360-7.
|
||||
*
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.5 1997/04/18 02:55:54 vadim Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.6 1997/04/24 20:30:41 scrappy Exp $
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
@ -60,7 +60,7 @@ cash_in(const char *str)
|
||||
char dsymbol, ssymbol, psymbol, nsymbol, csymbol;
|
||||
|
||||
#ifdef USE_LOCALE
|
||||
if (lconv == NULL) *lconv = localeconv();
|
||||
if (lconv == NULL) lconv = localeconv();
|
||||
|
||||
/* frac_digits in the C locale seems to return CHAR_MAX */
|
||||
/* best guess is 2 in this case I think */
|
||||
@ -158,7 +158,7 @@ cash_out(Cash *value)
|
||||
char convention;
|
||||
|
||||
#ifdef USE_LOCALE
|
||||
if (lconv == NULL) *lconv = localeconv();
|
||||
if (lconv == NULL) lconv = localeconv();
|
||||
|
||||
mon_group = *lconv->mon_grouping;
|
||||
comma = *lconv->mon_thousands_sep;
|
||||
|
Reference in New Issue
Block a user