diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-30 07:17:31 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-30 07:17:31 +0000 |
commit | e5b6b0ebb94f824f170d91ad2241a0ed65191208 (patch) | |
tree | 7be61dec963202745e03f1ea3d0d73a1fa82beb0 /src | |
parent | dd9dcd59cf54226aec64dc89156a5e93d1783184 (diff) |
Add new configure option "--enable-uniconv" that enables automatic
code conversion between Unicode and other encodings. Note that
this option requires --enable-multibyte also.
The reason why this is optional is that the feature requires huge
mapping tables and I don't think every user need the feature.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index fe6fb972c11..66faa7503bb 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -8,7 +8,7 @@ * or in config.h afterwards. Of course, if you edit config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: config.h.in,v 1.144 2000/10/23 14:49:45 momjian Exp $ + * $Id: config.h.in,v 1.145 2000/10/30 07:17:31 ishii Exp $ */ #ifndef CONFIG_H @@ -42,6 +42,9 @@ /* Set to 1 if you want to use multibyte characters (--enable-multibyte) */ #undef MULTIBYTE +/* Set to 1 if you want Unicode conversion support (--enable-uniconv) */ +#undef UNICODE_CONVERSION + /* Set to 1 if you want ASSERT checking (--enable-cassert) */ #undef USE_ASSERT_CHECKING |