aboutsummaryrefslogtreecommitdiff
path: root/tools/plink/version.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-11-19 10:48:58 +0000
committermarha <marha@users.sourceforge.net>2010-11-19 10:48:58 +0000
commit8fd6c61557d06a2434cf0e296df38f218ba2c186 (patch)
tree61e9672dfeacac466952ef9fc7b38ef21426b136 /tools/plink/version.c
parent20a8b976130e3b2cfff5c3364169e61ec10291f3 (diff)
downloadvcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.tar.gz
vcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.tar.bz2
vcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.zip
Remove tools again. Should have done it with svn merge --reintegrate
Diffstat (limited to 'tools/plink/version.c')
-rw-r--r--tools/plink/version.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/tools/plink/version.c b/tools/plink/version.c
deleted file mode 100644
index c0d28b884..000000000
--- a/tools/plink/version.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * PuTTY version numbering
- */
-
-#define STR1(x) #x
-#define STR(x) STR1(x)
-
-#if defined SNAPSHOT
-
-#if defined SVN_REV
-#define SNAPSHOT_TEXT STR(SNAPSHOT) ":r" STR(SVN_REV)
-#else
-#define SNAPSHOT_TEXT STR(SNAPSHOT)
-#endif
-
-char ver[] = "Development snapshot " SNAPSHOT_TEXT;
-char sshver[] = "PuTTY-Snapshot-" SNAPSHOT_TEXT;
-
-#undef SNAPSHOT_TEXT
-
-#elif defined RELEASE
-
-char ver[] = "Release " STR(RELEASE);
-char sshver[] = "PuTTY-Release-" STR(RELEASE);
-
-#elif defined SVN_REV
-
-char ver[] = "Custom build r" STR(SVN_REV);
-char sshver[] = "PuTTY-Custom-r" STR(SVN_REV);
-
-#else
-
-char ver[] = "Unidentified build, " __DATE__ " " __TIME__;
-char sshver[] = "PuTTY-Local: " __DATE__ " " __TIME__;
-
-#endif
-
-/*
- * SSH local version string MUST be under 40 characters. Here's a
- * compile time assertion to verify this.
- */
-enum { vorpal_sword = 1 / (sizeof(sshver) <= 40) };