diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-08-01 19:07:43 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-08-01 19:07:43 +0000 |
commit | 9c809d20155e4ad2ac50b824ee772fd481658b87 (patch) | |
tree | 15bd8f3bbeeb3a17c9f2101ad70fd19a7c875328 | |
parent | lang/ghc: fix build on powerpc64 elfv1 (diff) |
graphics/blender: fix build on GCC architectures
Error:
/wrkdirs/usr/ports/graphics/blender/work/blender-2.79b/source/blender/blenlib/intern/math_base.c: In function 'double_round':
/wrkdirs/usr/ports/graphics/blender/work/blender-2.79b/source/blender/blenlib/intern/math_base.c:59:17: error: conversion from 'double' to 'float' may change value [-Werror=float-conversion]
if (!isfinite(y))
Fix by adding -Wno-float-conversion.
Also add USES=gl gnome sdl.
PR: 239331
Approved by: FreeBSD@ShaneWare.Biz (maintainer), tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D21022
-rw-r--r-- | graphics/blender/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index 131877046bd6..74dbf1f1e101 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -25,7 +25,7 @@ RUN_DEPENDS= ${PYNUMPY} # are set. We will pull boost in just to be on the safe side. # USES=compiler is needed to support gcc built archs -USES= cmake compiler:c++14-lang desktop-file-utils \ +USES= cmake compiler:c++14-lang desktop-file-utils gl \ jpeg python:3.5 shebangfix USE_XORG= x11 xext xfixes xmu xrender USE_GL= gl glu glew @@ -39,6 +39,8 @@ SHEBANG_FILES= release/bin/blender-thumbnailer.py \ release/scripts/modules/bl_i18n_utils/merge_po.py \ release/scripts/modules/bl_i18n_utils/utils_rtl.py \ release/scripts/modules/blend_render_info.py +CFLAGS+= ${CFLAGS_${CHOSEN_COMPILER_TYPE}} +CFLAGS_gcc= -Wno-float-conversion CFLAGS_i386= -march=i586 CXXFLAGS_i386= -march=i586 @@ -70,6 +72,7 @@ COLLADA_CMAKE_BOOL= WITH_OPENCOLLADA COLLADA_LIB_DEPENDS= libOpenCOLLADABaseUtils.so:graphics/opencollada \ libpcre.so:devel/pcre COLLADA_USE= GNOME=libxml2 +COLLADA_USES= gnome COMPOSITOR_CMAKE_BOOL= WITH_COMPOSITOR CYCLES_IMPLIES= OPENIMAGEIO CYCLES_CMAKE_BOOL= WITH_CYCLES @@ -137,6 +140,7 @@ PLAYER_CMAKE_BOOL= WITH_PLAYER RAYOPTIMIZATION_CMAKE_BOOL= WITH_RAYOPTIMIZATION SDL_CMAKE_BOOL= WITH_SDL SDL_USE= SDL=sdl2 +SDL_USES= sdl SNDFILE_CMAKE_BOOL= WITH_CODEC_SNDFILE SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile TIFF_CMAKE_BOOL= WITH_IMAGE_TIFF |