From efdb726cf34b709148e72b5a29dfe8e500a7bb8d Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Sun, 7 Dec 2008 10:55:33 +0000 Subject: [PATCH] * put the PyRNA testing bit inside the DISABLE_PYTHON define, so we can use blenderlite as target too --- source/creator/creator.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/creator/creator.c b/source/creator/creator.c index 8cce54c07e2..b9f7ffed198 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -668,13 +668,13 @@ int main(int argc, char **argv) } break; case 'P': -//XXX -#if 1 - // FOR TESTING ONLY - a++; - BPY_run_python_script (argv[a]); -#else + #ifndef DISABLE_PYTHON + //XXX + // FOR TESTING ONLY + a++; + BPY_run_python_script (argv[a]); +#if 0 a++; if (a < argc) { /* If we're not running in background mode, then give python a valid screen */ @@ -685,10 +685,10 @@ int main(int argc, char **argv) BPY_run_python_script (argv[a]); } else printf("\nError: you must specify a Python script after '-P '.\n"); +#endif #else printf("This blender was built without python support\n"); #endif /* DISABLE_PYTHON */ -#endif break; case 'o': a++;