mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
ctype-utf8.c:
Workaround for platforms which don't support EILSEQ strings/ctype-utf8.c: Workaround for platforms which don't support EILSEQ
This commit is contained in:
parent
3531347e8c
commit
57ab67de6b
1 changed files with 4 additions and 0 deletions
|
@ -23,6 +23,10 @@
|
|||
#include "m_ctype.h"
|
||||
#include <errno.h>
|
||||
|
||||
#ifndef EILSEQ
|
||||
#define EILSEQ ENOENT
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CHARSET_utf8
|
||||
#define HAVE_UNIDATA
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue