summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/settings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/settings.cc')
-rw-r--r--Build/source/utils/asymptote/settings.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/settings.cc b/Build/source/utils/asymptote/settings.cc
index ece58b018a8..d617e15dac8 100644
--- a/Build/source/utils/asymptote/settings.cc
+++ b/Build/source/utils/asymptote/settings.cc
@@ -957,6 +957,7 @@ struct versionOption : public option {
bool editline=false;
bool sigsegv=false;
bool usegc=false;
+ bool usethreads=false;
#if HAVE_LIBGLM
glm=true;
@@ -1008,6 +1009,11 @@ struct versionOption : public option {
usegc=true;
#endif
+#ifdef HAVE_PTHREAD
+ usethreads=true;
+#endif
+
+ feature("V3D 3D vector graphics output",glm && xdr);
feature("WebGL 3D HTML rendering",glm);
#ifdef HAVE_LIBOSMESA
feature("OpenGL 3D OSMesa offscreen rendering",gl);
@@ -1026,6 +1032,7 @@ struct versionOption : public option {
feature("Sigsegv Distinguish stack overflows from segmentation faults",
sigsegv);
feature("GC Boehm garbage collector",usegc);
+ feature("threads Render OpenGL in separate thread",usethreads);
}
bool getOption() {