mirror of https://github.com/OpenTTD/OpenTTD
(svn r4109) - Fix (r4105) [iconv]: Only include the needed headers when ICONV is actually used. Thanks for noticing Bjarni
parent
0c581f8361
commit
c55d226769
7
unix.c
7
unix.c
|
@ -8,15 +8,12 @@
|
|||
#include "table/strings.h"
|
||||
#include "hal.h"
|
||||
#include "variables.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include <dirent.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
#include <time.h>
|
||||
#include <signal.h>
|
||||
#include <iconv.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef USE_HOMEDIR
|
||||
#include <pwd.h>
|
||||
|
@ -613,6 +610,10 @@ void CSleep(int milliseconds)
|
|||
|
||||
#ifdef WITH_ICONV
|
||||
|
||||
#include <iconv.h>
|
||||
#include <errno.h>
|
||||
#include "debug.h"
|
||||
|
||||
#define INTERNALCODE "ISO-8859-15"
|
||||
|
||||
/** Try and try to decipher the current locale from environmental
|
||||
|
|
Loading…
Reference in New Issue