Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'VERSION.C')
-rw-r--r--VERSION.C28
1 files changed, 0 insertions, 28 deletions
diff --git a/VERSION.C b/VERSION.C
deleted file mode 100644
index 620879c3..00000000
--- a/VERSION.C
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * PuTTY version numbering
- */
-
-/*
- * The difficult part of deciding what goes in these version strings
- * is done in Buildscr, and then written into version.h. All we have
- * to do here is to drop it into variables of the right names.
- */
-
-#include "putty.h"
-#include "ssh.h"
-
-#ifdef SOURCE_COMMIT
-#include "empty.h"
-#endif
-
-#include "version.h"
-
-const char ver[] = TEXTVER;
-const char sshver[] = SSHVER;
-const char commitid[] = SOURCE_COMMIT;
-
-/*
- * 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) };