1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: source: OOGL feature
Add to the banner a small `built (for|with)' message for indicating that
the front-end was built with Geomview support; meant to be suggested to
the upstream maintainer.
Origin: debian
Forwarded: by email
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2016-07-16
--- a/src/tmain.c
+++ b/src/tmain.c
@@ -216,6 +216,10 @@
outstring(msg);
#endif
+#ifdef OOGL
+ outstring("Built with Geomview support.\n");
+#endif
+
#if !defined(_WIN64) && !defined(WIN32) /* see definition of VERSION in variable.c */
if (evolver_display_short_description != NULL)
{ sprintf(msg,"Built with %s.\n",evolver_display_short_description);
|