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:
authorDalai Felinto <dfelinto@gmail.com>2013-06-23 00:00:17 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-06-23 00:00:17 +0400
commitd23bf097128b4baf032d14c345e9d97656f2da78 (patch)
tree8d9c02fd19a772f4e3a8ea74cef8b3f8db7081a2 /source/blender/blenlib/intern/BLI_heap.c
parentc6adbe794e68337179b33d101085fd0aa1ad15c9 (diff)
build fix for old gccs (after rev.57620)
enabling the new pragmas only when gcc >= 4.6 gcc 4.2.1 here (OSX)
Diffstat (limited to 'source/blender/blenlib/intern/BLI_heap.c')
-rw-r--r--source/blender/blenlib/intern/BLI_heap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c
index 93c99fed8e2..8b849753df7 100644
--- a/source/blender/blenlib/intern/BLI_heap.c
+++ b/source/blender/blenlib/intern/BLI_heap.c
@@ -41,9 +41,11 @@
#ifdef __GNUC__
# pragma GCC diagnostic error "-Wsign-conversion"
+#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */
# pragma GCC diagnostic error "-Wsign-compare"
# pragma GCC diagnostic error "-Wconversion"
#endif
+#endif
/***/