Merge pull request #5959 from ebfe/blender
blender: unbreak musl (Alpine patch)
This commit is contained in:
commit
84b27a7c91
3 changed files with 344 additions and 3 deletions
|
@ -0,0 +1,269 @@
|
|||
upstream patch: https://developer.blender.org/rB1a01ef4ae903f05ae4ff14bd585ed909e35fc089
|
||||
|
||||
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
|
||||
index e97a250cd2..0126e30d90 100644
|
||||
--- a/source/blender/blenlib/BLI_math_base.h
|
||||
+++ b/source/blender/blenlib/BLI_math_base.h
|
||||
@@ -1,262 +1,205 @@
|
||||
/*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The Original Code is: some of this file.
|
||||
*
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
* */
|
||||
|
||||
#ifndef __BLI_MATH_BASE_H__
|
||||
#define __BLI_MATH_BASE_H__
|
||||
|
||||
/** \file BLI_math_base.h
|
||||
* \ingroup bli
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# define _USE_MATH_DEFINES
|
||||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#include "BLI_math_inline.h"
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.14159265358979323846 /* pi */
|
||||
#endif
|
||||
#ifndef M_PI_2
|
||||
#define M_PI_2 1.57079632679489661923 /* pi/2 */
|
||||
#endif
|
||||
#ifndef M_PI_4
|
||||
#define M_PI_4 0.78539816339744830962 /* pi/4 */
|
||||
#endif
|
||||
#ifndef M_SQRT2
|
||||
#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
|
||||
#endif
|
||||
#ifndef M_SQRT1_2
|
||||
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
|
||||
#endif
|
||||
#ifndef M_SQRT3
|
||||
#define M_SQRT3 1.73205080756887729352 /* sqrt(3) */
|
||||
#endif
|
||||
#ifndef M_SQRT1_3
|
||||
#define M_SQRT1_3 0.57735026918962576450 /* 1/sqrt(3) */
|
||||
#endif
|
||||
#ifndef M_1_PI
|
||||
#define M_1_PI 0.318309886183790671538 /* 1/pi */
|
||||
#endif
|
||||
#ifndef M_E
|
||||
#define M_E 2.7182818284590452354 /* e */
|
||||
#endif
|
||||
#ifndef M_LOG2E
|
||||
#define M_LOG2E 1.4426950408889634074 /* log_2 e */
|
||||
#endif
|
||||
#ifndef M_LOG10E
|
||||
#define M_LOG10E 0.43429448190325182765 /* log_10 e */
|
||||
#endif
|
||||
#ifndef M_LN2
|
||||
#define M_LN2 0.69314718055994530942 /* log_e 2 */
|
||||
#endif
|
||||
#ifndef M_LN10
|
||||
#define M_LN10 2.30258509299404568402 /* log_e 10 */
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__)
|
||||
# define NAN_FLT __builtin_nanf("")
|
||||
#else
|
||||
/* evil quiet NaN definition */
|
||||
static const int NAN_INT = 0x7FC00000;
|
||||
# define NAN_FLT (*((float *)(&NAN_INT)))
|
||||
#endif
|
||||
|
||||
-/* do not redefine functions from C99, POSIX.1-2001 or MSVC12 (partial C99) */
|
||||
-#if !(defined(_ISOC99_SOURCE) || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L) || defined(_MSC_VER))
|
||||
-
|
||||
-#ifndef sqrtf
|
||||
-#define sqrtf(a) ((float)sqrt(a))
|
||||
-#endif
|
||||
-#ifndef powf
|
||||
-#define powf(a, b) ((float)pow(a, b))
|
||||
-#endif
|
||||
-#ifndef cosf
|
||||
-#define cosf(a) ((float)cos(a))
|
||||
-#endif
|
||||
-#ifndef sinf
|
||||
-#define sinf(a) ((float)sin(a))
|
||||
-#endif
|
||||
-#ifndef acosf
|
||||
-#define acosf(a) ((float)acos(a))
|
||||
-#endif
|
||||
-#ifndef asinf
|
||||
-#define asinf(a) ((float)asin(a))
|
||||
-#endif
|
||||
-#ifndef atan2f
|
||||
-#define atan2f(a, b) ((float)atan2(a, b))
|
||||
-#endif
|
||||
-#ifndef tanf
|
||||
-#define tanf(a) ((float)tan(a))
|
||||
-#endif
|
||||
-#ifndef atanf
|
||||
-#define atanf(a) ((float)atan(a))
|
||||
-#endif
|
||||
-#ifndef floorf
|
||||
-#define floorf(a) ((float)floor(a))
|
||||
-#endif
|
||||
-#ifndef ceilf
|
||||
-#define ceilf(a) ((float)ceil(a))
|
||||
-#endif
|
||||
-#ifndef fabsf
|
||||
-#define fabsf(a) ((float)fabs(a))
|
||||
-#endif
|
||||
-#ifndef logf
|
||||
-#define logf(a) ((float)log(a))
|
||||
-#endif
|
||||
-#ifndef expf
|
||||
-#define expf(a) ((float)exp(a))
|
||||
-#endif
|
||||
-#ifndef fmodf
|
||||
-#define fmodf(a, b) ((float)fmod(a, b))
|
||||
-#endif
|
||||
-#ifndef hypotf
|
||||
-#define hypotf(a, b) ((float)hypot(a, b))
|
||||
-#endif
|
||||
-#ifndef copysignf
|
||||
-#define copysignf(a, b) ((float)copysign(a, b))
|
||||
-#endif
|
||||
-
|
||||
-#endif /* C99, POSIX.1-2001 or MSVC12 (partial C99) */
|
||||
-
|
||||
#if BLI_MATH_DO_INLINE
|
||||
#include "intern/math_base_inline.c"
|
||||
#endif
|
||||
|
||||
#ifdef BLI_MATH_GCC_WARN_PRAGMA
|
||||
# pragma GCC diagnostic push
|
||||
# pragma GCC diagnostic ignored "-Wredundant-decls"
|
||||
#endif
|
||||
|
||||
/******************************* Float ******************************/
|
||||
|
||||
MINLINE float pow2f(float x);
|
||||
MINLINE float pow3f(float x);
|
||||
MINLINE float pow4f(float x);
|
||||
MINLINE float pow7f(float x);
|
||||
|
||||
MINLINE float sqrt3f(float f);
|
||||
MINLINE double sqrt3d(double d);
|
||||
|
||||
MINLINE float sqrtf_signed(float f);
|
||||
|
||||
MINLINE float saacosf(float f);
|
||||
MINLINE float saasinf(float f);
|
||||
MINLINE float sasqrtf(float f);
|
||||
MINLINE float saacos(float fac);
|
||||
MINLINE float saasin(float fac);
|
||||
MINLINE float sasqrt(float fac);
|
||||
|
||||
MINLINE float interpf(float a, float b, float t);
|
||||
|
||||
MINLINE float min_ff(float a, float b);
|
||||
MINLINE float max_ff(float a, float b);
|
||||
MINLINE float min_fff(float a, float b, float c);
|
||||
MINLINE float max_fff(float a, float b, float c);
|
||||
MINLINE float min_ffff(float a, float b, float c, float d);
|
||||
MINLINE float max_ffff(float a, float b, float c, float d);
|
||||
|
||||
MINLINE int min_ii(int a, int b);
|
||||
MINLINE int max_ii(int a, int b);
|
||||
MINLINE int min_iii(int a, int b, int c);
|
||||
MINLINE int max_iii(int a, int b, int c);
|
||||
MINLINE int min_iiii(int a, int b, int c, int d);
|
||||
MINLINE int max_iiii(int a, int b, int c, int d);
|
||||
|
||||
MINLINE int compare_ff(float a, float b, const float max_diff);
|
||||
MINLINE int compare_ff_relative(float a, float b, const float max_diff, const int max_ulps);
|
||||
|
||||
MINLINE float signf(float f);
|
||||
MINLINE int signum_i_ex(float a, float eps);
|
||||
MINLINE int signum_i(float a);
|
||||
|
||||
MINLINE float power_of_2(float f);
|
||||
|
||||
/* these don't really fit anywhere but were being copied about a lot */
|
||||
MINLINE int is_power_of_2_i(int n);
|
||||
MINLINE int power_of_2_max_i(int n);
|
||||
MINLINE int power_of_2_min_i(int n);
|
||||
|
||||
MINLINE unsigned int power_of_2_max_u(unsigned int x);
|
||||
MINLINE unsigned int power_of_2_min_u(unsigned int x);
|
||||
|
||||
MINLINE int iroundf(float a);
|
||||
MINLINE int divide_round_i(int a, int b);
|
||||
MINLINE int mod_i(int i, int n);
|
||||
|
||||
int pow_i(int base, int exp);
|
||||
double double_round(double x, int ndigits);
|
||||
|
||||
#ifdef BLI_MATH_GCC_WARN_PRAGMA
|
||||
# pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
/* asserts, some math functions expect normalized inputs
|
||||
* check the vector is unit length, or zero length (which can't be helped in some cases).
|
||||
*/
|
||||
#ifndef NDEBUG
|
||||
/* note: 0.0001 is too small becaues normals may be converted from short's: see [#34322] */
|
||||
# define BLI_ASSERT_UNIT_EPSILON 0.0002f
|
||||
# define BLI_ASSERT_UNIT_V3(v) { \
|
||||
const float _test_unit = len_squared_v3(v); \
|
||||
BLI_assert((fabsf(_test_unit - 1.0f) < BLI_ASSERT_UNIT_EPSILON) || \
|
||||
(fabsf(_test_unit) < BLI_ASSERT_UNIT_EPSILON)); \
|
||||
} (void)0
|
||||
|
||||
# define BLI_ASSERT_UNIT_V2(v) { \
|
||||
const float _test_unit = len_squared_v2(v); \
|
||||
BLI_assert((fabsf(_test_unit - 1.0f) < BLI_ASSERT_UNIT_EPSILON) || \
|
||||
(fabsf(_test_unit) < BLI_ASSERT_UNIT_EPSILON)); \
|
||||
} (void)0
|
||||
|
||||
# define BLI_ASSERT_UNIT_QUAT(q) { \
|
||||
const float _test_unit = dot_qtqt(q, q); \
|
||||
BLI_assert((fabsf(_test_unit - 1.0f) < BLI_ASSERT_UNIT_EPSILON * 10) || \
|
||||
(fabsf(_test_unit) < BLI_ASSERT_UNIT_EPSILON * 10)); \
|
||||
} (void)0
|
||||
|
||||
# define BLI_ASSERT_ZERO_M3(m) { \
|
||||
BLI_assert(dot_vn_vn((const float *)m, (const float *)m, 9) != 0.0); \
|
||||
} (void)0
|
||||
|
||||
# define BLI_ASSERT_ZERO_M4(m) { \
|
||||
BLI_assert(dot_vn_vn((const float *)m, (const float *)m, 16) != 0.0); \
|
||||
} (void)0
|
||||
# define BLI_ASSERT_UNIT_M3(m) { \
|
||||
BLI_ASSERT_UNIT_V3((m)[0]); \
|
||||
BLI_ASSERT_UNIT_V3((m)[1]); \
|
||||
BLI_ASSERT_UNIT_V3((m)[2]); \
|
||||
} (void)0
|
||||
#else
|
||||
# define BLI_ASSERT_UNIT_V2(v) (void)(v)
|
||||
# define BLI_ASSERT_UNIT_V3(v) (void)(v)
|
||||
# define BLI_ASSERT_UNIT_QUAT(v) (void)(v)
|
||||
# define BLI_ASSERT_ZERO_M3(m) (void)(m)
|
||||
# define BLI_ASSERT_ZERO_M4(m) (void)(m)
|
||||
# define BLI_ASSERT_UNIT_M3(m) (void)(m)
|
||||
#endif
|
||||
|
||||
#endif /* __BLI_MATH_BASE_H__ */
|
67
srcpkgs/blender/patches/blender-2.78a-musl.patch
Normal file
67
srcpkgs/blender/patches/blender-2.78a-musl.patch
Normal file
|
@ -0,0 +1,67 @@
|
|||
diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
|
||||
--- blender-2.78.orig/CMakeLists.txt 2016-10-25 12:09:56.000000000 +0000
|
||||
+++ blender-2.78a/CMakeLists.txt 2017-02-07 14:50:03.967828817 +0000
|
||||
@@ -181,6 +181,18 @@
|
||||
set(_init_SDL OFF)
|
||||
set(_init_FFTW3 OFF)
|
||||
set(_init_OPENSUBDIV OFF)
|
||||
+ # musl-libc related checks (missing execinfo.h, and feenableexcept())
|
||||
+ include(CheckIncludeFiles)
|
||||
+ check_include_files(execinfo.h HAVE_EXECINFO_H)
|
||||
+ if (HAVE_EXECINFO_H)
|
||||
+ add_definitions(-DHAVE_EXECINFO_H)
|
||||
+ endif()
|
||||
+
|
||||
+ include(CheckLibraryExists)
|
||||
+ check_library_exists(m feenableexcept "fenv.h" HAVE_FEENABLEEXCEPT)
|
||||
+ if (HAVE_FEENABLEEXCEPT)
|
||||
+ add_definitions(-DHAVE_FEENABLEEXCEPT)
|
||||
+ endif()
|
||||
elseif(WIN32)
|
||||
set(_init_JACK OFF)
|
||||
elseif(APPLE)
|
||||
diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
|
||||
--- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h 2016-09-28 09:26:55.000000000 +0000
|
||||
+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h 2017-02-07 14:44:35.213040733 +0000
|
||||
@@ -52,7 +52,7 @@
|
||||
#undef HAVE_MALLOC_STATS
|
||||
#define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
|
||||
|
||||
-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
|
||||
+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
|
||||
# include <malloc.h>
|
||||
# define HAVE_MALLOC_STATS
|
||||
#elif defined(__FreeBSD__)
|
||||
diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
|
||||
--- blender-2.78.orig/source/blender/blenlib/intern/system.c 2016-10-25 09:59:23.000000000 +0000
|
||||
+++ blender-2.78a/source/blender/blenlib/intern/system.c 2017-02-07 14:44:35.213040733 +0000
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
/* for backtrace */
|
||||
-#if defined(__linux__) || defined(__APPLE__)
|
||||
+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
|
||||
# include <execinfo.h>
|
||||
#elif defined(WIN32)
|
||||
# include <windows.h>
|
||||
@@ -77,7 +77,7 @@
|
||||
{
|
||||
/* ------------- */
|
||||
/* Linux / Apple */
|
||||
-#if defined(__linux__) || defined(__APPLE__)
|
||||
+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
|
||||
|
||||
#define SIZE 100
|
||||
void *buffer[SIZE];
|
||||
diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source/creator/creator_signals.c
|
||||
--- blender-2.78.orig/source/creator/creator_signals.c 2016-10-24 14:13:56.000000000 +0000
|
||||
+++ blender-2.78a/source/creator/creator_signals.c 2017-02-07 14:47:01.888625973 +0000
|
||||
@@ -309,7 +309,7 @@
|
||||
* set breakpoints on sig_handle_fpe */
|
||||
signal(SIGFPE, sig_handle_fpe);
|
||||
|
||||
-# if defined(__linux__) && defined(__GNUC__)
|
||||
+# if defined(__linux__) && defined(__GNUC__) && defined(HAVE_FEENABLEEXCEPT)
|
||||
feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
|
||||
# endif /* defined(__linux__) && defined(__GNUC__) */
|
||||
# if defined(OSX_SSE_FPE)
|
|
@ -1,14 +1,14 @@
|
|||
# Template file for 'blender'
|
||||
pkgname=blender
|
||||
version=2.78c
|
||||
revision=1
|
||||
revision=2
|
||||
build_style="cmake"
|
||||
makedepends="
|
||||
libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
|
||||
glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
|
||||
libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
|
||||
libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
|
||||
opencolorio-devel jemalloc-devel opencollada-devel"
|
||||
opencolorio-devel opencollada-devel $(vopt_if jemalloc jemalloc-devel)"
|
||||
depends="desktop-file-utils hicolor-icon-theme"
|
||||
short_desc="3D graphics creation suite"
|
||||
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
||||
|
@ -16,6 +16,7 @@ license="GPL-2"
|
|||
homepage="http://blender.org"
|
||||
distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
|
||||
checksum=64a98ff30300f79385ddb9ad016aa790a92720ff2feb84ddb1d097e6531dd338
|
||||
patch_args="-Np1"
|
||||
|
||||
pycompile_version="$py3_ver"
|
||||
pycompile_dirs="/usr/share/blender/$version/scripts"
|
||||
|
@ -42,6 +43,10 @@ configure_args="
|
|||
-DPYTHON_LIBRARY='python${py3_ver}m'
|
||||
-DPYTHON_INCLUDE_DIRS=$py3_inc"
|
||||
|
||||
build_options="jemalloc"
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
*-musl) broken="http://build.voidlinux.eu/builders/x86_64-musl_builder/builds/3998/steps/shell_3/logs/stdio";;
|
||||
*-musl) # crashes at startup in jemallocs free()
|
||||
;;
|
||||
*) build_options_default+=" jemalloc"
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue