mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
Further *BSD portability.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5958 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2d06b4114b
commit
949b873dc8
16 changed files with 50 additions and 126 deletions
|
@ -27,16 +27,18 @@
|
|||
#ifdef WIN32
|
||||
#include <Windows.h>
|
||||
#else
|
||||
#include <sys/param.h>
|
||||
#include <iconv.h>
|
||||
#include <errno.h>
|
||||
#endif
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#define ICONV_CONST const
|
||||
#endif
|
||||
#ifndef ICONV_CONST
|
||||
#if defined __FreeBSD__ || __NetBSD__
|
||||
#define ICONV_CONST const
|
||||
#else
|
||||
#define ICONV_CONST
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue