(svn r4109) - Fix (r4105) [iconv]: Only include the needed headers when ICONV is actually used. Thanks for noticing Bjarni

pull/155/head
Darkvater 19 years ago
parent a77e3bd855
commit c3602c7f9d

@ -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…
Cancel
Save