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>2005-02-25 17:50:57 +0300
committerKent Mein <mein@cs.umn.edu>2005-02-25 17:50:57 +0300
commite13933bc7ca3879946df2a079a5fe47b0b217ae2 (patch)
tree3165f87e40f6e68cbeb8ce2fb388c82139d5ac5a
parent8ff9af56091bff796496e6c068672ae1d88c3947 (diff)
Added include sys/vfs.h for hpux was in the patches tracker....
and cleaned up the include for dirent.h Kent
-rw-r--r--source/blender/blenlib/intern/storage.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 8a4db10c843..07f245982f7 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -36,12 +36,7 @@
#include <stdio.h>
#include <stdlib.h>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef WIN32
-
#include <windows.h>
#include "BLI_winstuff.h"
#include <sys/types.h>
@@ -65,7 +60,7 @@
#include <sys/mount.h>
#endif
-#if defined(linux) || defined(__CYGWIN32__)
+#if defined(linux) || defined(__CYGWIN32__) || defined(__hpux)
#include <sys/vfs.h>
#endif