Commit: 0b28a9a4463ab2eefef01f5ab58a6bcfee21add4 Author: Brecht Van Lommel Date: Sat Jan 26 15:02:52 2019 +0100 Branches: master https://developer.blender.org/rB0b28a9a4463ab2eefef01f5ab58a6bcfee21add4
Fix build error after recent cleanup. =================================================================== M source/blender/blenkernel/intern/ocean.c M source/blender/modifiers/intern/MOD_ocean.c =================================================================== diff --git a/source/blender/blenkernel/intern/ocean.c b/source/blender/blenkernel/intern/ocean.c index 09a5cac48a1..adbe1a7f889 100644 --- a/source/blender/blenkernel/intern/ocean.c +++ b/source/blender/blenkernel/intern/ocean.c @@ -39,6 +39,11 @@ #include "DNA_modifier_types.h" #include "DNA_scene_types.h" +#include "BLI_math.h" +#include "BLI_path_util.h" +#include "BLI_rand.h" +#include "BLI_task.h" +#include "BLI_threads.h" #include "BLI_utildefines.h" #include "BKE_image.h" diff --git a/source/blender/modifiers/intern/MOD_ocean.c b/source/blender/modifiers/intern/MOD_ocean.c index 2b2fa2ff2df..464302f29fa 100644 --- a/source/blender/modifiers/intern/MOD_ocean.c +++ b/source/blender/modifiers/intern/MOD_ocean.c @@ -36,8 +36,12 @@ #include "DNA_modifier_types.h" #include "DNA_scene_types.h" +#include "BLI_math.h" +#include "BLI_math_inline.h" +#include "BLI_task.h" #include "BLI_utildefines.h" +#include "BKE_library.h" #include "BKE_mesh.h" #include "BKE_modifier.h" #include "BKE_ocean.h" _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
