summaryrefslogtreecommitdiff
path: root/FL/filename.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2012-04-23 09:47:04 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2012-04-23 09:47:04 +0000
commitfd9f4e61323e569575ff9a204622182c2da76365 (patch)
treeb7a3ea502c075439f9245924486f05f276480ca3 /FL/filename.H
parent42416fa912ef344655a21b7c2554bcdb61729b6a (diff)
Fix STR #2819 (include dirent.h on Windows/MinGW).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9382 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/filename.H')
-rw-r--r--FL/filename.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/filename.H b/FL/filename.H
index 9dccfa414..ea281f8e2 100644
--- a/FL/filename.H
+++ b/FL/filename.H
@@ -70,7 +70,7 @@ inline int fl_filename_relative(char *to, const char *from) { return fl_filename
# endif /* __cplusplus */
-# if defined(WIN32) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
+# if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
struct dirent {char d_name[1];};