Commit: fd8d6d9d0efecfba46240a9f8186f13ff7f2d285 Author: Kévin Dietrich Date: Sat Jun 11 17:58:14 2016 +0200 Branches: alembic_basic_io https://developer.blender.org/rBfd8d6d9d0efecfba46240a9f8186f13ff7f2d285
Fix compile error on Windows. =================================================================== M source/blender/editors/io/io_alembic.c =================================================================== diff --git a/source/blender/editors/io/io_alembic.c b/source/blender/editors/io/io_alembic.c index e3ba05f..41c299d 100644 --- a/source/blender/editors/io/io_alembic.c +++ b/source/blender/editors/io/io_alembic.c @@ -24,7 +24,12 @@ #ifdef WITH_ALEMBIC -#include <dirent.h> +/* needed for directory lookup */ +#ifndef WIN32 +# include <dirent.h> +#else +# include "BLI_winstuff.h" +#endif #include "MEM_guardedalloc.h" _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
