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>2014-10-15 11:23:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-10-15 11:23:43 +0400
commit2d50e5feaaaf9fa6e73aa2b1d62921265c77d041 (patch)
treeab378a2404ad56a0f36bf155ba0abec7bf371501 /source/blender/blenlib/BLI_sort.h
parentab3290048c85e6dda28bd048d6815e2e9b52f6a2 (diff)
Fix T42226: Glibc <= 2.8 fails to build
Diffstat (limited to 'source/blender/blenlib/BLI_sort.h')
-rw-r--r--source/blender/blenlib/BLI_sort.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_sort.h b/source/blender/blenlib/BLI_sort.h
index 516f917a351..cb6b87bda38 100644
--- a/source/blender/blenlib/BLI_sort.h
+++ b/source/blender/blenlib/BLI_sort.h
@@ -35,7 +35,8 @@
#include <stdlib.h>
-#ifdef __GLIBC__
+/* glibc 2.8+ */
+#if defined(__GLIBC__) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8))
# define BLI_qsort_r qsort_r
#endif