diff options
author | Darkvater <Darkvater@openttd.org> | 2006-03-25 15:47:20 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-03-25 15:47:20 +0000 |
commit | c3602c7f9d7281af9fb9ee330aa3dd79395d0542 (patch) | |
tree | 6e495eca9c50cab444a832c74155155f9a01d218 | |
parent | a77e3bd85586f4c4f835c0a69c2c6a2c79307c5d (diff) | |
download | openttd-c3602c7f9d7281af9fb9ee330aa3dd79395d0542.tar.xz |
(svn r4109) - Fix (r4105) [iconv]: Only include the needed headers when ICONV is actually used. Thanks for noticing Bjarni
-rw-r--r-- | unix.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |