Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/action/test')
-rw-r--r--intern/action/test/action_c_test/ActionTest.c6
-rw-r--r--intern/action/test/action_c_test/TestAction.c4
-rw-r--r--intern/action/test/action_cpp_test/ActionTest.cpp6
3 files changed, 14 insertions, 2 deletions
diff --git a/intern/action/test/action_c_test/ActionTest.c b/intern/action/test/action_c_test/ActionTest.c
index a30163e0c3b..8f169528204 100644
--- a/intern/action/test/action_c_test/ActionTest.c
+++ b/intern/action/test/action_c_test/ActionTest.c
@@ -37,6 +37,10 @@
* @date March 31, 2001
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "ACT_ActionC-Api.h"
#include "TestAction.h"
@@ -80,4 +84,4 @@ int main(int argc, char *argv[])
ACT_ActionStackRedo(stack);
return 0;
-} \ No newline at end of file
+}
diff --git a/intern/action/test/action_c_test/TestAction.c b/intern/action/test/action_c_test/TestAction.c
index 7b9739495d0..0b4896dadd7 100644
--- a/intern/action/test/action_c_test/TestAction.c
+++ b/intern/action/test/action_c_test/TestAction.c
@@ -39,6 +39,10 @@
#include <stdio.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "TestAction.h"
diff --git a/intern/action/test/action_cpp_test/ActionTest.cpp b/intern/action/test/action_cpp_test/ActionTest.cpp
index 379cc41a5de..55173bafb7b 100644
--- a/intern/action/test/action_cpp_test/ActionTest.cpp
+++ b/intern/action/test/action_cpp_test/ActionTest.cpp
@@ -37,6 +37,10 @@
* @date March 31, 2001
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "ACT_ActionStack.h"
#include "TestAction.h"
@@ -80,4 +84,4 @@ int main()
testStack.redo();
return 0;
-} \ No newline at end of file
+}