diff options
author | Clifford Wolf <clifford@clifford.at> | 2012-04-23 23:16:22 (GMT) |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2012-04-23 23:16:22 (GMT) |
commit | dde401cadb499b272c1a2fe992e48c354bc5e5cf (patch) | |
tree | ab9439365e9faf5f997b8b955f94b203b5f9bfb7 /src | |
parent | bc15e944da6a5670b81cb6edfaf44a7493c630fa (diff) |
Fixed build for old OpenCSG versions (no OPENCSG_VERSION_STRING)
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwin.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index bb0f90d..90e5f61 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -95,6 +95,10 @@ #endif // ENABLE_CGAL +#ifndef OPENCSG_VERSION_STRING +#define OPENCSG_VERSION_STRING "unknown, <1.3.2" +#endif + // Global application state unsigned int GuiLocker::gui_locked = 0; |