diff options
author | unknown <bar@mysql.com> | 2004-08-27 21:17:29 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-08-27 21:17:29 +0500 |
commit | 2fddfe2ff1650e6a3689ccd9b9c1a69c5dde31cf (patch) | |
tree | 2d868802c9210e5d8536eda0f7bdc42318a70293 /configure.in | |
parent | 4b5953b9d580773d0eead25d83d830232e00c411 (diff) | |
download | mariadb-git-2fddfe2ff1650e6a3689ccd9b9c1a69c5dde31cf.tar.gz |
Compile all charset conversion tables if --with-extra-charsets=all
or --with-extra-charsets=complex is given.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 2adf2208332..7853b615ae0 100644 --- a/configure.in +++ b/configure.in @@ -2262,9 +2262,11 @@ elif test "$extra_charsets" = complex; then CHARSETS=`/bin/ls -1 $srcdir/strings/ctype-*.c | \ sed -e 's;^.*/ctype-;;' -e 's;.c$;;'` CHARSETS=`echo $CHARSETS` # get rid of line breaks + AC_DEFINE([DEFINE_ALL_CHARACTER_SETS]) else if test "$extra_charsets" = all; then CHARSETS="$CHARSETS_AVAILABLE $CHARSETS_DEPRECATED" + AC_DEFINE([DEFINE_ALL_CHARACTER_SETS]) else CHARSETS=`echo $extra_charsets | sed -e 's/,/ /g'` fi |