View | Details | Raw Unified | Return to bug 99897
Collapse All | Expand All

(-)Makefile (-4 lines)
Lines 33-42 Link Here
33
33
34
.include <bsd.port.pre.mk>
34
.include <bsd.port.pre.mk>
35
35
36
.if ${ARCH} == "sparc64"
37
BROKEN=		"Does not compile on sparc64"
38
.endif
39
40
pre-everything::
36
pre-everything::
41
.if !defined(WITH_OPTIMIZED_CFLAGS)
37
.if !defined(WITH_OPTIMIZED_CFLAGS)
42
	@${ECHO_MSG} "You can enable additional compilation optimizations"
38
	@${ECHO_MSG} "You can enable additional compilation optimizations"
(-)files/patch-source_blender_blenlib_intern_storage.c (+20 lines)
Added Link Here
1
--- source/blender/blenlib/intern/storage.c.orig	Fri Jul  7 14:15:04 2006
2
+++ source/blender/blenlib/intern/storage.c	Fri Jul  7 14:17:47 2006
3
@@ -50,7 +50,7 @@
4
 #include <time.h>
5
 #include <sys/stat.h>
6
 
7
-#if !defined(linux) && (defined(__sgi) || defined(__sun__) || defined(__sun) || defined(__sparc) || defined(__sparc__))
8
+#if !defined(__FreeBSD__) && !defined(linux) && (defined(__sgi) || defined(__sun__) || defined(__sun) || defined(__sparc) || defined(__sparc__))
9
 #include <sys/statfs.h>
10
 #endif
11
 
12
@@ -194,7 +194,7 @@
13
 #ifdef __BeOS
14
 	return -1;
15
 #endif
16
-#if !defined(linux) && (defined (__sgi) || defined (__sun__) || defined (__sun) || defined(__sparc) || defined(__sparc__))
17
+#if !defined(__FreeBSD__) && !defined(linux) && (defined (__sgi) || defined (__sun__) || defined (__sun) || defined(__sparc) || defined(__sparc__))
18
 
19
 	if (statfs(name, &disk, sizeof(struct statfs), 0)){
20
 		/* printf("diskfree: Couldn't get information about %s.\n",dir); */

Return to bug 99897