forked from msys2/MINGW-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-fixes.patch
26 lines (22 loc) · 1.01 KB
/
build-fixes.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- assimp/tools/assimp_cmd/assimp_cmd.rc.orig 2014-06-12 21:50:48.160000000 +0400
+++ assimp/tools/assimp_cmd/assimp_cmd.rc 2014-06-12 21:54:56.986400000 +0400
@@ -1,7 +1,7 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
-#include "../../revision.h"
+#include "revision.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
--- assimp/test/unit/Main.cpp.orig 2014-06-12 22:00:03.635600000 +0400
+++ assimp/test/unit/Main.cpp 2014-06-12 22:00:14.150000000 +0400
@@ -25,10 +25,9 @@
aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE);
// .. and C. They should smoothly work together
+ aiLogStream logS = aiGetPredefinedLogStream(aiDefaultLogStream_FILE, "AssimpLog_C.txt");
aiEnableVerboseLogging(AI_TRUE);
- aiAttachLogStream(&aiGetPredefinedLogStream(
- aiDefaultLogStream_FILE,
- "AssimpLog_C.txt"));
+ aiAttachLogStream(&logS);
// ............................................................................