summaryrefslogtreecommitdiffstats
path: root/src/extension/script/InkscapeScript.cpp
diff options
context:
space:
mode:
authorRalf Stephan <ralf@ark.in-berlin.de>2006-05-29 08:34:57 +0000
committerrwst <rwst@users.sourceforge.net>2006-05-29 08:34:57 +0000
commit90dd89530831586fc00d223e957f1990004abee9 (patch)
treeeee428603cee4285425ffdc7481c8ee6016963de /src/extension/script/InkscapeScript.cpp
parentuse unions for type-punning to remove some gcc-4.1 warnings (diff)
downloadinkscape-90dd89530831586fc00d223e957f1990004abee9.tar.gz
inkscape-90dd89530831586fc00d223e957f1990004abee9.zip
handle request for not-compiled-in internal scripting; execute didn't check return value; fixes #1495283
(bzr r1062)
Diffstat (limited to 'src/extension/script/InkscapeScript.cpp')
-rw-r--r--src/extension/script/InkscapeScript.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/extension/script/InkscapeScript.cpp b/src/extension/script/InkscapeScript.cpp
index 87d120245..f403a3db0 100644
--- a/src/extension/script/InkscapeScript.cpp
+++ b/src/extension/script/InkscapeScript.cpp
@@ -66,6 +66,9 @@ bool InkscapeScript::interpretScript(const Glib::ustring &script,
#ifdef WITH_PERL
langname="Perl";
interp = new InkscapePerl();
+#else
+ g_print ("Internal Perl script functionality requested, but it was not compiled in!\n");
+ return false;
#endif
}
else if (language == InkscapeScript::PYTHON)
@@ -73,6 +76,9 @@ bool InkscapeScript::interpretScript(const Glib::ustring &script,
#ifdef WITH_PYTHON
langname="Python";
interp = new InkscapePython();
+#else
+ g_print ("Internal Python script functionality requested, but it was not compiled in!\n");
+ return false;
#endif
}
else