summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-09-14 10:36:52 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-09-14 10:36:52 +0000
commit2374be8a26a3172f98c4a9a855ede5c43d0c415a (patch)
tree4faaf0c0cf0018bdf9c77816c041ec080d210c8d /src
parent113cf00edfe12b2d0026dd2332a84f21c4d91891 (diff)
Remove --enable-unicode-conversion
unicode-conversion is always on if --enable-multibyte is specified Tatsuo Ishii
Diffstat (limited to 'src')
-rw-r--r--src/include/pg_config.h.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in
index e72e5a1c224..3944e1c9396 100644
--- a/src/include/pg_config.h.in
+++ b/src/include/pg_config.h.in
@@ -8,7 +8,7 @@
* or in pg_config.h afterwards. Of course, if you edit pg_config.h, then your
* changes will be overwritten the next time you run configure.
*
- * $Id: pg_config.h.in,v 1.5 2001/09/07 19:52:54 momjian Exp $
+ * $Id: pg_config.h.in,v 1.6 2001/09/14 10:36:52 ishii Exp $
*/
#ifndef PG_CONFIG_H
@@ -42,8 +42,10 @@
/* 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
+#ifdef MULTIBYTE
+/* --enable-multibyte implies UNICODE_CONVERSION */
+#define UNICODE_CONVERSION
+#endif
/* Set to 1 if you want ASSERT checking (--enable-cassert) */
#undef USE_ASSERT_CHECKING