From: Davi Arnaut Date: Thu, 5 Jul 2012 13:43:20 -0700 Subject: [PATCH] Bug#65830: utf8_general_cs is not available The problem is that although the utf8_general_cs collation is enabled in CMake, the config option (HAVE_UTF8_GENERAL_CS) is not being copied over to the configuration header (e.g. config.h) because it lacks a stub in config.h.cmake for CMake to replace with the actual value of the variable. --- config.h.cmake | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/config.h.cmake b/config.h.cmake index cab6b8f..0a5d3ef 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -315,6 +315,8 @@ #define USE_MB 1 #define USE_MB_IDENT 1 +#cmakedefine HAVE_UTF8_GENERAL_CS 1 + #cmakedefine HAVE_VALGRIND /* Types we may use */ -- 1.7.4.4