Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2004-02-23 17:29:10 +0300
committerKent Mein <mein@cs.umn.edu>2004-02-23 17:29:10 +0300
commitd9cf17d930a86445b9a1562458e243cc4fc8c73e (patch)
treec07f9ae6421e8e94aeff0cc7b3d89d6d3a3807d9
parent50549b602aeba96227cdc802bc28ea7b1a39b2d7 (diff)
Added a if defined(__sun)
I believe gcc and sun's cc have it defined differently. It wasn't including statfs.h now it is. Kent
-rw-r--r--source/blender/blenlib/intern/storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index bc85820a76c..e6319a22ba8 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -56,7 +56,7 @@
#include <time.h>
#include <sys/stat.h>
-#if defined(__sgi) || defined(__sun__)
+#if defined(__sgi) || defined(__sun__) || defined(__sun)
#include <sys/statfs.h>
#endif