From 1d3349b7f1889e5a082f9abead300e911778ab8a Mon Sep 17 00:00:00 2001
From: Brad King <brad.king@kitware.com>
Date: Thu, 1 Apr 2004 15:28:18 -0500
Subject: [PATCH] ENH: Added comment for future work to make forwarding
 executable always statically linked.

---
 ProcessFwd9x.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/ProcessFwd9x.c b/ProcessFwd9x.c
index 094de1ef..739b9c33 100644
--- a/ProcessFwd9x.c
+++ b/ProcessFwd9x.c
@@ -16,6 +16,15 @@
   On Windows9x platforms, this executable is spawned between a parent
   process and the child it is invoking to work around a bug.  See the
   Win32 implementation file for details.
+
+  Future Work: This executable must be linked statically against the C
+  runtime library before being encoded into the library.  Building it
+  in this way may be hard because CMake has limited abilities to build
+  different targets with different configurations in the same
+  directory.  We may just have to create and encode the executable
+  once instead of generating it during the build.  This would be an
+  acceptable solution because the forwarding executable should not
+  change very often and is pretty simple.
 */
 
 #ifdef _MSC_VER
-- 
GitLab