diff options
author | serg@serg.mysql.com <> | 2003-02-24 11:46:07 +0100 |
---|---|---|
committer | serg@serg.mysql.com <> | 2003-02-24 11:46:07 +0100 |
commit | dd0bdc2244906265e2f313c3f3aac0c03daa31c3 (patch) | |
tree | b718e5dc5f999143b4773056c7c17b89ac15718e /configure.in | |
parent | 572e2a1568a8a561218f22bfa187b0002d642740 (diff) | |
download | mariadb-git-dd0bdc2244906265e2f313c3f3aac0c03daa31c3.tar.gz |
allow --without-extra-charsets
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 71639bafd63..aea925534c2 100644 --- a/configure.in +++ b/configure.in @@ -2199,7 +2199,9 @@ AC_ARG_WITH(extra-charsets, AC_MSG_CHECKING("character sets") -if test "$extra_charsets" = none; then +if test "$extra_charsets" = no; then + CHARSETS="" +elif test "$extra_charsets" = none; then CHARSETS="" elif test "$extra_charsets" = complex; then CHARSETS=`/bin/ls -1 $srcdir/strings/ctype-*.c | \ |