summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lwlib/lwlib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c
index e5c9ddc4bb4..796a69c884d 100644
--- a/lwlib/lwlib.c
+++ b/lwlib/lwlib.c
@@ -67,6 +67,11 @@ ERROR! no more than one of USE_MOTIF and USE_OLIT may be defined.
static widget_info*
all_widget_info = NULL;
+#ifdef USE_MOTIF
+char *lwlib_toolkit_type = "motif";
+#else
+char *lwlib_toolkit_type = "lucid";
+#endif
/* Forward declarations */
static void
instanciate_widget_instance (/* widget_instance* instance */);