diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-04 04:03:10 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-04 04:03:10 +0000 |
commit | 4c3c8c048d64791e71fa8f8f2a7a6de249984474 (patch) | |
tree | 647cacc2a606b991be799e92978f64e43d04ef90 /src/backend/tcop/postgres.c | |
parent | f3c3deb7d003cad114696b0bf5e01b04bb5b8fd0 (diff) | |
download | postgresql-4c3c8c048d64791e71fa8f8f2a7a6de249984474.tar.gz postgresql-4c3c8c048d64791e71fa8f8f2a7a6de249984474.zip |
Remove --enable-recode feature, since it's been broken by IPv6 changes,
and seems to have too few users to justify maintaining.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index f5f6aecfddf..b063f49c814 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.355 2003/08/04 02:40:04 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.356 2003/08/04 04:03:06 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -2614,14 +2614,6 @@ PostgresMain(int argc, char *argv[], const char *username) } /* - * Set up additional info. - */ - -#ifdef CYR_RECODE - SetCharSet(); -#endif - - /* * General initialization. * * NOTE: if you are tempted to add code in this vicinity, consider @@ -2651,7 +2643,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.355 $ $Date: 2003/08/04 02:40:04 $\n"); + puts("$Revision: 1.356 $ $Date: 2003/08/04 04:03:06 $\n"); } /* |