From d9369d4a46c40c3c4cd8108fea9d64ee69fbd041 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 6 Oct 2018 11:49:09 +0100 Subject: [PATCH] Give PuTTYtel its own Windows manifest file. While grepping for FIXME comments I could get rid of easily, I came across a completely unexplained one in puttytel.rc, and after a moment of thought, realised that it was there because PuTTYtel sharing PuTTY's manifest file means the manifest has the wrong application name. Of course I could do something a bit more clever involving having one copy of the manifest file and templating it to multiple applications, but I think it would be more pain than it's worth given that the templating system would have to be compatible with all the makefiles and run on Windows systems where no sensible scripting was available. So I just do it the trivial way. --- windows/puttytel.mft | 31 +++++++++++++++++++++++++++++++ windows/puttytel.rc | 3 +-- 2 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 windows/puttytel.mft diff --git a/windows/puttytel.mft b/windows/puttytel.mft new file mode 100644 index 00000000..2fda22dc --- /dev/null +++ b/windows/puttytel.mft @@ -0,0 +1,31 @@ + + + + + A network client and terminal emulator + + + + + + + + + + true + + + diff --git a/windows/puttytel.rc b/windows/puttytel.rc index dbdfc46d..a5cba2c8 100644 --- a/windows/puttytel.rc +++ b/windows/puttytel.rc @@ -6,6 +6,5 @@ #include "win_res.rc2" #ifndef NO_MANIFESTS -/* FIXME */ -1 RT_MANIFEST "putty.mft" +1 RT_MANIFEST "puttytel.mft" #endif /* NO_MANIFESTS */