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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-25 00:19:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-25 00:19:01 +0400
commit27d19aaaf449037f3437996406ed9b77c09831a2 (patch)
treeefbd11bfc23efec3ae067b803db95af01cbccc8f /source/blender/blenlib/intern/storage.c
parent18b1ab1598b6b5b2623c170369ce0765c7e63533 (diff)
minor fixes
- build with netbsd works again. - select uv more/less was crashing when called outside image space. - node RNA property update was crashing when not called in node space.
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-rw-r--r--source/blender/blenlib/intern/storage.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 841207b2ed4..66e749011c3 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -31,27 +31,26 @@
* \ingroup bli
*/
-
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#ifndef WIN32
-#include <dirent.h>
+# include <dirent.h>
#endif
#include <time.h>
#include <sys/stat.h>
#if defined(__sun__) || defined(__sun) || defined(__NetBSD__)
-#include <sys/statvfs.h> /* Other modern unix os's should probably use this also */
+# include <sys/statvfs.h> /* Other modern unix os's should probably use this also */
#elif !defined(__FreeBSD__) && !defined(linux) && (defined(__sparc) || defined(__sparc__))
-#include <sys/statfs.h>
+# include <sys/statfs.h>
#endif
-#if defined(__FreeBSD__) || defined(__OpenBSD__)
-#include <sys/param.h>
-#include <sys/mount.h>
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
+# include <sys/param.h>
+# include <sys/mount.h>
#endif
#if defined(linux) || defined(__CYGWIN32__) || defined(__hpux) || defined(__GNU__) || defined(__GLIBC__)
@@ -59,9 +58,9 @@
#endif
#ifdef __APPLE__
-/* For statfs */
-#include <sys/param.h>
-#include <sys/mount.h>
+ /* For statfs */
+# include <sys/param.h>
+# include <sys/mount.h>
#endif /* __APPLE__ */