mirror of
https://github.com/MariaDB/server.git
synced 2026-04-24 09:15:30 +02:00
Compatibility fixes by U Orsini
This commit is contained in:
parent
474ee1eedb
commit
3dc35ee493
6 changed files with 7 additions and 4 deletions
|
|
@ -49,7 +49,7 @@
|
|||
TODO : Verify if FreeBSD & AIX stores ISO 10646 in wchar_t. */
|
||||
#if !defined(__NetBSD__) && !defined(__sun) \
|
||||
&& !(defined(__APPLE__) && defined(__MACH__)) \
|
||||
&& !defined(__FreeBSD__) && !defined(_AIX)
|
||||
&& !defined(__FreeBSD__) && !defined(_AIX) && !defined(__OpenBSD__)
|
||||
#ifndef __STDC_ISO_10646__
|
||||
/* In many places it is assumed that the first 127 code points are ASCII
|
||||
* compatible, so ensure wchar_t indeed does ISO 10646 and not some other
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/4/93";
|
|||
#include "np/vis.h"
|
||||
|
||||
#ifdef __weak_alias
|
||||
__weak_alias(strnunvisx,_strnunvisx)
|
||||
__weak_alias(strnunvisx,_strnunvisx);
|
||||
#endif
|
||||
|
||||
#if !HAVE_VIS
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#ifdef __weak_alias
|
||||
__weak_alias(strvisx,_strvisx)
|
||||
__weak_alias(strvisx,_strvisx);
|
||||
#endif
|
||||
|
||||
#if !HAVE_VIS || !HAVE_SVIS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue