diff options
author | rubidium <rubidium@openttd.org> | 2007-03-18 18:02:24 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-03-18 18:02:24 +0000 |
commit | 065144b5aee6eddc8208d2d147feb24914738f01 (patch) | |
tree | 9221e8f869458b31c4d339af5c4581d8660c85eb | |
parent | b63634f095c10ffad30103fdcb56317ff949cb01 (diff) | |
download | openttd-065144b5aee6eddc8208d2d147feb24914738f01.tar.xz |
(svn r9281) -Fix [FS#687]: compile failure when compiling with 'home directories' enabled (stepancheg).
-rw-r--r-- | src/fileio.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index a578d05fe..8ab41b31a 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -12,6 +12,7 @@ #include "debug.h" #include "fios.h" #ifndef WIN32 +#include <pwd.h> #include <unistd.h> #include <sys/stat.h> #endif |