diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2009-04-08 09:50:48 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2009-04-08 09:50:48 +0000 |
commit | 1fe5020558b17a796a7c5d8485256abfb1ab8fc7 (patch) | |
tree | 7fc07de7b8dca3b92efe4c919a03befef2010c4c /src/include | |
parent | baf048d7d2303b358c3a70495c0eb4939a0ab96a (diff) | |
download | postgresql-1fe5020558b17a796a7c5d8485256abfb1ab8fc7.tar.gz postgresql-1fe5020558b17a796a7c5d8485256abfb1ab8fc7.zip |
Tell gettext which codeset to use by calling bind_textdomain_codeset(). We
already did that on Windows, but it's needed on other platforms too when
LC_CTYPE=C. With other locales, we enforce (or trust) that the codeset of
the locale matches the server encoding so we don't need to bind it
explicitly. It should do no harm in that case either, but I don't have
full faith in the PG encoding -> OS codeset mapping table yet. Per recent
discussion on pgsql-hackers.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/mb/pg_wchar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index 5b780db2a2d..b7e1fe9c818 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.88 2009/04/02 17:30:53 tgl Exp $ + * $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.89 2009/04/08 09:50:48 heikki Exp $ * * NOTES * This is used both by the backend and by libpq, but should not be @@ -391,7 +391,7 @@ extern const char *pg_get_client_encoding_name(void); extern void SetDatabaseEncoding(int encoding); extern int GetDatabaseEncoding(void); extern const char *GetDatabaseEncodingName(void); -extern void pg_bind_textdomain_codeset(const char *domainname, int encoding); +extern void pg_bind_textdomain_codeset(const char *domainname); extern int pg_valid_client_encoding(const char *name); extern int pg_valid_server_encoding(const char *name); |